/* ==========================================================
   RESET / BASE
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: #f2f0ec;
    color: #151719;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1460px, calc(100% - 80px));
    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.header-inner {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 46px;
}


/* BRAND */

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-main {
    display: flex;
    flex-direction: column;
    font-size: 19px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: .16em;
}

.brand-main strong {
    color: #c98a5c;
    font-weight: 700;
}

.brand-line {
    width: 1px;
    height: 45px;
    background: rgba(255,255,255,.32);
}

.brand-description {
    color: rgba(255,255,255,.62);
    font-size: 9px;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: .06em;
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition:
        color .25s ease,
        opacity .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 1px;
    background: #c98a5c;
    transition: width .3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* CONTACT */

.header-contact {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-schedule {
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.65;
}

.header-schedule strong {
    display: block;
    color: rgba(255,255,255,.88);
    font-weight: 500;
}

.header-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.2);
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-phone > a {
    color: #fff;
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.callback-link {
    position: relative;
    margin-top: 10px;
    padding: 0 0 5px;
    background: transparent;
    color: #d7a37b;
    font-size: 10px;
    cursor: pointer;
}

.callback-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(215,163,123,.7);
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 27px;
    height: 1px;
    margin: 7px auto;
    background: #fff;
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;
    min-height: 820px;
    height: 100vh;
    max-height: 980px;
    overflow: hidden;
    background: #0b0e0f;
    color: #fff;
}


/* BACKGROUND */

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    position: absolute;
    inset: 0;

    /*
       Файл додамо наступним кроком.
    */
    background-image: url("../img/hero-metal.jpg");
    background-position: center center;
    background-size: cover;

    transform: scale(1.015);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,10,11,.98) 0%,
            rgba(7,10,11,.91) 24%,
            rgba(7,10,11,.61) 46%,
            rgba(7,10,11,.17) 70%,
            rgba(7,10,11,.26) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.34) 0%,
            transparent 32%,
            rgba(0,0,0,.13) 72%,
            rgba(0,0,0,.54) 100%
        );
}


/* HERO INNER */

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 85px;
}

.hero-content {
    width: min(670px, 56%);
}


/* EYEBROW */

.hero-eyebrow {
    margin-bottom: 21px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .34em;
}


/* TITLE */

.hero h1 {
    margin: 0;
    font-size: clamp(64px, 5.5vw, 92px);
    line-height: .91;
    font-weight: 800;
    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;
    color: #c78a60;
}


/* LEAD */

.hero-lead {
    position: relative;
    margin: 24px 0 0;
    padding-bottom: 23px;
    color: rgba(255,255,255,.87);
    font-size: 21px;
    line-height: 1.4;
    font-weight: 400;
}

.hero-lead::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 1px;
    background: #c98a5c;
}


/* FEATURES */

.hero-features {
    display: flex;
    align-items: stretch;
    margin-top: 24px;
}

.hero-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 125px;
    padding: 0 19px;
}

.hero-feature:first-child {
    padding-left: 0;
}

.hero-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,.2);
}

.hero-feature span {
    padding-top: 1px;
    color: #c98a5c;
    font-size: 9px;
    font-weight: 700;
}

.hero-feature strong {
    color: rgba(255,255,255,.76);
    font-size: 10px;
    line-height: 1.45;
    font-weight: 600;
    text-transform: uppercase;
}


/* ACTIONS */

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    min-width: 250px;
    min-height: 63px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .025em;
    cursor: pointer;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background:
        linear-gradient(
            110deg,
            #a96d47,
            #d09a71
        );
    color: #fff;
}

.btn-primary:hover {
    background:
        linear-gradient(
            110deg,
            #ba7950,
            #dda67d
        );
}

.btn-secondary {
    border-color: rgba(215,163,123,.6);
    background: rgba(8,11,12,.3);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: #d7a37b;
    background: rgba(201,138,92,.09);
}

.btn-arrow {
    color: #e1ae87;
    font-size: 21px;
    line-height: 1;
    font-weight: 400;
}


/* NOTE */

.hero-note {
    position: relative;
    max-width: 390px;
    margin: 26px 0 0;
    padding-left: 23px;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    line-height: 1.7;
}

.hero-note::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 1px;
    background: rgba(215,163,123,.62);
}


/* SIDE TEXT */

.hero-side-text {
    position: absolute;
    z-index: 3;
    right: 1%;
    bottom: 155px;

    display: flex;
    flex-direction: column;
    gap: 7px;

    color: rgba(255,255,255,.72);
    font-size: 11px;
    line-height: 1;
    letter-spacing: .5em;
}

.hero-side-text i {
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 11px;
    background: #c98a5c;
}


/* ==========================================================
   HERO BOTTOM
========================================================== */

.hero-bottom {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;

    min-height: 76px;

    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(10,13,14,.78);
    backdrop-filter: blur(14px);
}

.hero-bottom-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-bottom-label {
    position: relative;
    padding-left: 31px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .32em;
}

.hero-bottom-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 31px;
    background: #c98a5c;
    transform: translateY(-50%);
}

.hero-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    transition: color .25s ease;
}

.hero-bottom a span {
    color: #c98a5c;
    font-size: 21px;
    transition: transform .25s ease;
}

.hero-bottom a:hover {
    color: #fff;
}

.hero-bottom a:hover span {
    transform: translateX(5px);
}


/* ==========================================================
   METALS — START
========================================================== */

.metals {
    padding: 110px 0;
    background: #f2f0ec;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #9b6645;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #17191a;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.045em;
}

.section-heading h2 span {
    color: #a96d47;
}

.section-heading > p {
    width: 390px;
    margin: 0 0 5px;
    color: #747474;
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================================
   <= 1300
========================================================== */

@media (max-width: 1300px) {

    .container {
        width: min(1180px, calc(100% - 60px));
    }

    .header-inner {
        gap: 28px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .header-schedule {
        display: none;
    }

    .header-divider {
        display: none;
    }

    .hero-content {
        width: 620px;
    }

}


/* ==========================================================
   <= 1050
========================================================== */

@media (max-width: 1050px) {

    .container {
        width: calc(100% - 48px);
    }

    .header-inner {
        min-height: 88px;
    }

    .main-nav,
    .header-contact {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .hero {
        min-height: 760px;
    }

    .hero-inner {
        padding-top: 90px;
    }

    .hero-content {
        width: 68%;
    }

    .hero h1 {
        font-size: clamp(58px, 8vw, 80px);
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 18px 0;
    }

    .hero-feature {
        width: 50%;
    }

    .hero-feature:nth-child(2)::after {
        display: none;
    }

    .hero-side-text {
        display: none;
    }

}


/* ==========================================================
   <= 760
========================================================== */

@media (max-width: 760px) {

    .container {
        width: calc(100% - 36px);
    }

    .brand-description,
    .brand-line {
        display: none;
    }

    .brand-main {
        font-size: 17px;
    }

    .hero {
        height: auto;
        min-height: 760px;
        max-height: none;
    }

    .hero-image {
        background-position: 64% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7,10,11,.96) 0%,
                rgba(7,10,11,.82) 55%,
                rgba(7,10,11,.48) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0,0,0,.15),
                rgba(0,0,0,.65)
            );
    }

    .hero-inner {
        min-height: 760px;
        align-items: flex-start;
        padding-top: 145px;
        padding-bottom: 115px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 17px;
        font-size: 9px;
    }

    .hero h1 {
        max-width: 520px;
        font-size: clamp(47px, 13vw, 68px);
        line-height: .93;
    }

    .hero-lead {
        margin-top: 19px;
        font-size: 17px;
    }

    .hero-features {
        margin-top: 22px;
    }

    .hero-feature {
        min-width: 0;
        padding: 0 12px;
    }

    .hero-feature:nth-child(odd) {
        padding-left: 0;
    }

    .hero-feature strong {
        font-size: 9px;
    }

    .hero-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        min-width: 0;
        min-height: 58px;
    }

    .hero-note {
        margin-top: 19px;
    }

    .hero-bottom {
        min-height: 66px;
    }

    .hero-bottom-inner {
        min-height: 66px;
    }

    .hero-bottom-label {
        font-size: 8px;
        letter-spacing: .2em;
    }

    .hero-bottom a {
        font-size: 9px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        width: 100%;
        margin-top: 25px;
    }

    .metals {
        padding: 80px 0;
    }

}


/* ==========================================================
   <= 480
========================================================== */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-feature {
        gap: 6px;
    }

    .hero-feature span {
        font-size: 8px;
    }

    .hero-feature strong {
        font-size: 8px;
    }

    .hero-bottom-label {
        max-width: 110px;
        line-height: 1.5;
    }

}
/* ==========================================================
   METALS GRID
========================================================== */

.metals {
    position: relative;
    overflow: hidden;
    padding: 110px 0 0;
    background: #f2f0ec;
}


/* GRID */

.metals-grid {
    width: 100%;
    margin-top: 65px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 430px;
}


/* CARD */

.metal-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    background: #111415;
    color: #fff;
    cursor: pointer;
}

.metal-card-large {
    grid-column: span 2;
}

.metal-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.01);

    filter:
        saturate(.88)
        contrast(1.04);

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1),
        filter .7s ease;
}


/* DARK SHADE */

.metal-card-shade {
    position: absolute;
    z-index: 1;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,9,10,.06) 0%,
            rgba(7,9,10,.05) 36%,
            rgba(7,9,10,.38) 65%,
            rgba(7,9,10,.94) 100%
        );

    transition: background .6s ease;
}


/* NUMBER */

.metal-card-number {
    position: absolute;
    z-index: 3;
    top: 28px;
    right: 30px;

    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;

    transition:
        color .3s ease,
        transform .4s ease;
}

.metal-card-number::before {
    content: "";
    position: absolute;

    top: 50%;
    right: calc(100% + 12px);

    width: 25px;
    height: 1px;

    background: rgba(255,255,255,.3);

    transform: translateY(-50%);

    transition:
        width .4s ease,
        background .4s ease;
}


/* CONTENT */

.metal-card-content {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 35px 34px 31px;
}


.metal-card-label {
    display: block;
    margin-bottom: 8px;

    color: #d09a71;

    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: .22em;
}


.metal-card h3 {
    margin: 0;

    color: #fff;

    font-size: clamp(25px, 2vw, 36px);
    line-height: 1.05;
    font-weight: 700;

    letter-spacing: -.035em;
}


/* CARD BOTTOM */

.metal-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    max-height: 0;
    margin-top: 0;

    overflow: hidden;

    opacity: 0;
    transform: translateY(15px);

    transition:
        max-height .55s ease,
        margin .55s ease,
        opacity .4s ease,
        transform .55s ease;
}


.metal-card-bottom > span {
    max-width: 190px;

    color: rgba(255,255,255,.58);

    font-size: 11px;
    line-height: 1.5;
}


/* DETAILS BUTTON */

.metal-card-link {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 0;

    background: transparent;
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    cursor: pointer;
}


.metal-card-link span {
    position: relative;
    padding-bottom: 4px;
}


.metal-card-link span::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;

    background: #c98a5c;

    transform: scaleX(.35);
    transform-origin: right;

    transition: transform .35s ease;
}


.metal-card-link i {
    color: #d09a71;

    font-size: 18px;
    line-height: 1;

    font-style: normal;

    transition: transform .35s ease;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.metal-card:hover img {
    transform: scale(1.065);

    filter:
        saturate(1)
        contrast(1.07);
}


.metal-card:hover .metal-card-shade {
    background:
        linear-gradient(
            180deg,
            rgba(7,9,10,.02) 0%,
            rgba(7,9,10,.08) 30%,
            rgba(7,9,10,.48) 62%,
            rgba(7,9,10,.97) 100%
        );
}


.metal-card:hover .metal-card-number {
    color: #d09a71;
    transform: translateX(-3px);
}


.metal-card:hover .metal-card-number::before {
    width: 38px;
    background: #c98a5c;
}


.metal-card:hover .metal-card-bottom {
    max-height: 90px;
    margin-top: 18px;

    opacity: 1;
    transform: translateY(0);
}


.metal-card:hover .metal-card-link span::after {
    transform: scaleX(1);
    transform-origin: left;
}


.metal-card:hover .metal-card-link i {
    transform: translateX(5px);
}


/* ==========================================================
   METALS FOOTER
========================================================== */

.metals-footer {
    min-height: 125px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


.metals-footer p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}


.metals-footer p strong {
    color: #252829;
    font-weight: 600;
}


.text-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 24px;

    padding: 13px 0;

    background: transparent;
    color: #17191a;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .04em;

    cursor: pointer;
}


.text-link::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;

    height: 1px;

    background: #b97850;

    transform: scaleX(.35);
    transform-origin: right;

    transition: transform .35s ease;
}


.text-link span {
    color: #b97850;
    font-size: 20px;

    transition: transform .35s ease;
}


.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.text-link:hover span {
    transform: translateX(6px);
}


/* ==========================================================
   METALS — <= 1100
========================================================== */

@media (max-width: 1100px) {

    .metals-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 410px;
    }

    .metal-card-large {
        grid-column: span 1;
    }

    .metal-card-bottom {
        max-height: 90px;
        margin-top: 16px;

        opacity: 1;
        transform: none;
    }

}


/* ==========================================================
   METALS — <= 700
========================================================== */

@media (max-width: 700px) {

    .metals {
        padding-top: 75px;
    }

    .metals-grid {
        margin-top: 45px;

        grid-template-columns: 1fr;
        grid-auto-rows: 430px;
    }

    .metal-card-content {
        padding: 28px 24px;
    }

    .metal-card-number {
        top: 23px;
        right: 24px;
    }

    .metal-card h3 {
        font-size: 31px;
    }

    .metals-footer {
        min-height: 0;
        padding-top: 35px;
        padding-bottom: 45px;

        display: block;
    }

    .metals-footer .text-link {
        margin-top: 20px;
    }

}


/* ==========================================================
   METALS — <= 480
========================================================== */

@media (max-width: 480px) {

    .metals-grid {
        grid-auto-rows: 365px;
    }

    .metal-card-content {
        padding: 25px 20px;
    }

    .metal-card-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

}
/* ==========================================================
   PROCESS
========================================================== */

.process {
    position: relative;
    overflow: hidden;
    padding: 135px 0 145px;
    background:
        radial-gradient(
            circle at 14% 42%,
            rgba(166, 99, 59, .13),
            transparent 28%
        ),
        #0b0e0f;
    color: #fff;
}

.process::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
    opacity: .055;
    background:
        repeating-linear-gradient(
            115deg,
            transparent 0,
            transparent 28px,
            rgba(255,255,255,.55) 29px,
            transparent 30px
        );
    pointer-events: none;
}

.process-glow {
    position: absolute;
    left: -180px;
    bottom: -280px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(178,108,65,.08);
    filter: blur(100px);
    pointer-events: none;
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 130px;
}


/* LEFT */

.process-intro {
    padding-top: 7px;
}

.process .section-eyebrow {
    color: #c98a5c;
}

.process-index {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 47px 0 25px;
    color: rgba(255,255,255,.38);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
}

.process-index i {
    width: 65px;
    height: 1px;
    background: linear-gradient(
        90deg,
        #c98a5c,
        rgba(201,138,92,.15)
    );
}

.process-intro h2 {
    margin: 0;
    font-size: clamp(50px, 4.6vw, 75px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.process-intro h2 span {
    color: #b97950;
}

.process-intro > p {
    max-width: 410px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.46);
    font-size: 13px;
    line-height: 1.85;
}


/* LEFT CTA */

.process-estimate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    margin-top: 39px;
    padding: 0 0 10px;
    background: transparent;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
}

.process-estimate::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #a96d47;
    transform-origin: left;
    transition: transform .35s ease;
}

.process-estimate i {
    color: #cf946a;
    font-size: 20px;
    line-height: 1;
    font-style: normal;
    transition: transform .35s ease;
}

.process-estimate:hover::after {
    transform: scaleX(.65);
}

.process-estimate:hover i {
    transform: translateX(6px);
}


/* RIGHT */

.process-steps {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.13);
}

.process-step {
    position: relative;
    min-height: 175px;
    display: grid;
    grid-template-columns: 82px 1fr 40px;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    transition: background .45s ease;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -28px;
    width: 2px;
    background: #b97950;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.process-step:hover {
    background: rgba(255,255,255,.018);
}

.process-step:hover::before {
    transform: scaleY(1);
}

.process-step-number {
    color: #b97950;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
}

.process-step-label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.29);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .25em;
}

.process-step h3 {
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.025em;
}

.process-step p {
    max-width: 470px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.42);
    font-size: 11px;
    line-height: 1.7;
}

.process-step-arrow {
    color: rgba(255,255,255,.23);
    font-size: 22px;
    transition:
        color .35s ease,
        transform .35s ease;
}

.process-step:hover .process-step-arrow {
    color: #c98a5c;
    transform: translate(4px, -4px);
}


/* VERTICAL PROGRESS */

.process-progress {
    position: absolute;
    top: 0;
    left: -28px;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,.04);
}

.process-progress span {
    display: block;
    width: 100%;
    height: 0;
    background: linear-gradient(
        180deg,
        #d09a71,
        #9b603e
    );
}


/* ==========================================================
   PROCESS <= 1000
========================================================== */

@media (max-width: 1000px) {

    .process {
        padding: 100px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .process-intro > p {
        max-width: 600px;
    }

    .process-step::before,
    .process-progress {
        left: -15px;
    }

}


/* ==========================================================
   PROCESS <= 600
========================================================== */

@media (max-width: 600px) {

    .process {
        padding: 80px 0;
    }

    .process-grid {
        gap: 55px;
    }

    .process-index {
        margin-top: 32px;
    }

    .process-intro h2 {
        font-size: 47px;
    }

    .process-step {
        min-height: 190px;
        grid-template-columns: 42px 1fr;
        gap: 15px;
        padding: 24px 0;
    }

    .process-step-arrow {
        display: none;
    }

    .process-step h3 {
        font-size: 21px;
    }

    .process-step p {
        font-size: 10px;
    }

}
/* ==========================================================
   ADVANTAGES — COMPACT SCREEN VERSION
========================================================== */

.advantages {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 78px 0 72px;
    background: #f2f0ec;
}


/* ==========================================================
   HEAD
========================================================== */

.advantages-head {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;

    padding-bottom: 34px;
    border-bottom: 0;
}

.advantages-head > div {
    min-width: 0;
}

.advantages-head .section-eyebrow {
    margin-bottom: 18px;
}

.advantages-head h2 {
    max-width: 680px;
    margin: 0;

    color: #161819;

    font-size: clamp(48px, 4.15vw, 67px);
    line-height: .94;

    font-weight: 800;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.advantages-head h2 span {
    color: #ad704a;
}


/* intro text moves under heading */

.advantages-head > p {
    grid-column: 1;
    width: 100%;
    max-width: 570px;

    margin: -3px 0 0;

    color: #777;

    font-size: 13px;
    line-height: 1.75;
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.advantages-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;

    padding-top: 0;
}


/* ==========================================================
   LEFT — BIG 04
========================================================== */

.advantages-statement {
    position: relative;

    min-height: 310px;
    padding-top: 22px;

    border-top: 1px solid rgba(20,22,23,.14);
}

.advantages-statement-small {
    display: block;

    margin-top: 18px;

    color: #a66a45;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .29em;
}

.advantages-big-number {
    margin-top: 25px;

    color: #17191a;

    font-size: clamp(145px, 13vw, 205px);
    line-height: .72;

    font-weight: 800;
    letter-spacing: -.095em;
}

.advantages-statement p {
    max-width: 210px;

    margin: 28px 0 0;

    color: #747575;

    font-size: 12px;
    line-height: 1.55;
}

.advantages-line {
    display: block;

    width: 85px;
    height: 1px;

    margin-top: 25px;

    background: #b7774f;
}


/* ==========================================================
   RIGHT LIST
========================================================== */

.advantages-list {
    margin-top: -170px;
    border-top: 1px solid rgba(20,22,23,.14);
}


/* ==========================================================
   ITEM
========================================================== */

.advantage-item {
    position: relative;

    min-height: 126px;

    display: grid;
    grid-template-columns: 65px 1fr 85px;
    align-items: center;
    gap: 24px;

    border-bottom: 1px solid rgba(20,22,23,.14);

    cursor: default;

    transition:
        padding .4s cubic-bezier(.2,.7,.2,1),
        background .35s ease;
}

.advantage-number {
    color: #a96d47;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;

    transition: transform .4s ease;
}


/* TEXT */

.advantage-copy {
    padding: 17px 0;
}

.advantage-label {
    display: block;

    margin-bottom: 6px;

    color: #999;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: .27em;
}

.advantage-copy h3 {
    margin: 0;

    color: #191b1c;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 600;
    letter-spacing: -.03em;
}

.advantage-copy p {
    max-width: 490px;

    margin: 7px 0 0;

    color: #7b7b7b;

    font-size: 10px;
    line-height: 1.6;
}


/* GHOST NUMBERS */

.advantage-mark {
    justify-self: end;

    color: transparent;

    font-size: 58px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: -.08em;

    -webkit-text-stroke:
        1px rgba(25,27,28,.09);

    transition:
        color .4s ease,
        -webkit-text-stroke .4s ease,
        transform .45s ease;
}


/* ==========================================================
   HOVER
========================================================== */

.advantage-item::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: -18px;

    width: 2px;

    background: #b7774f;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}

.advantage-item:hover {
    padding-left: 10px;
    background: rgba(255,255,255,.25);
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-item:hover .advantage-number {
    transform: translateX(4px);
}

.advantage-item:hover .advantage-mark {
    color: rgba(183,119,79,.06);

    -webkit-text-stroke:
        1px rgba(183,119,79,.28);

    transform: translateX(-7px);
}


/* ==========================================================
   <= 1100
========================================================== */

@media (max-width: 1100px) {

    .advantages {
        min-height: 0;
        padding: 95px 0;
    }

    .advantages-head {
        display: block;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(20,22,23,.13);
    }

    .advantages-head > p {
        max-width: 600px;
        margin-top: 25px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 45px;
    }

    .advantages-statement {
        min-height: 0;
        border-top: 0;
    }

    .advantages-big-number {
        font-size: 145px;
    }

    .advantages-list {
        margin-top: 0;
    }

}


/* ==========================================================
   <= 600
========================================================== */

@media (max-width: 600px) {

    .advantages {
        padding: 75px 0;
    }

    .advantages-head {
        padding-bottom: 40px;
    }

    .advantages-head h2 {
        font-size: 43px;
    }

    .advantages-layout {
        padding-top: 35px;
    }

    .advantages-big-number {
        font-size: 120px;
    }

    .advantage-item {
        min-height: 142px;

        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .advantage-mark {
        display: none;
    }

    .advantage-copy h3 {
        font-size: 20px;
    }

    .advantage-copy p {
        font-size: 10px;
    }

}
/* ==========================================================
   ESTIMATE CTA
========================================================== */

.estimate {
    position: relative;
    overflow: hidden;

    min-height: 720px;

    display: flex;
    align-items: stretch;

    background: #090c0d;
    color: #fff;
}


/* BACKGROUND */

.estimate-bg {
    position: absolute;
    inset: 0;
}

.estimate-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.04);

    filter:
        saturate(.7)
        contrast(1.1);
}

.estimate-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,9,10,.96) 0%,
            rgba(7,9,10,.88) 42%,
            rgba(7,9,10,.52) 72%,
            rgba(7,9,10,.68) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7,9,10,.20),
            rgba(7,9,10,.55)
        );
}


/* INNER */

.estimate-inner {
    position: relative;
    z-index: 2;

    width: calc(100% - 120px);
    max-width: 1460px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    padding-top: 62px;
    padding-bottom: 48px;
}
@media (max-width: 1200px) {

    .estimate-inner {
        width: calc(100% - 60px);
    }

}

@media (max-width: 600px) {

    .estimate-inner {
        width: calc(100% - 36px);
    }

}

/* TOP */

.estimate-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 28px;

    border-bottom: 1px solid rgba(255,255,255,.17);
}

.estimate-eyebrow,
.estimate-index {
    color: #c8895e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .28em;
}

.estimate-index {
    color: rgba(255,255,255,.42);
}


/* MAIN */

.estimate-main {
    flex: 1;

    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;

    gap: 100px;
}

.estimate-main h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(90px, 10vw, 155px);
    line-height: .78;

    font-weight: 800;
    letter-spacing: -.075em;

    text-transform: uppercase;
}

.estimate-main h2 span {
    color: #bc7b51;
}


/* SIDE */

.estimate-side {
    max-width: 430px;
    justify-self: end;
}

.estimate-side p {
    margin: 0 0 38px;

    color: rgba(255,255,255,.60);

    font-size: 13px;
    line-height: 1.8;
}


/* BUTTON */

.estimate-button {
    position: relative;

    width: 100%;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    overflow: hidden;

    border: 1px solid rgba(201,137,94,.75);

    background: rgba(9,12,13,.35);
    color: #fff;

    cursor: pointer;

    transition:
        border-color .35s ease,
        background .35s ease;
}

.estimate-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b7774f;

    transform: translateY(101%);

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1);
}

.estimate-button-text,
.estimate-button-arrow {
    position: relative;
    z-index: 2;
}

.estimate-button-text {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .05em;
}

.estimate-button-arrow {
    color: #d39a71;

    font-size: 27px;

    transition:
        color .4s ease,
        transform .4s ease;
}

.estimate-button:hover {
    border-color: #b7774f;
}

.estimate-button:hover::before {
    transform: translateY(0);
}

.estimate-button:hover .estimate-button-arrow {
    color: #fff;
    transform: translate(5px,-5px);
}


/* BOTTOM */

.estimate-bottom {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.17);
}

.estimate-bottom span {
    position: relative;

    padding-top: 22px;

    color: rgba(255,255,255,.38);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .22em;
}

.estimate-bottom span:not(:first-child) {
    padding-left: 25px;

    border-left: 1px solid rgba(255,255,255,.12);
}


/* ==========================================================
   ESTIMATE <= 900
========================================================== */

@media (max-width: 900px) {

    .estimate {
        min-height: 680px;
    }

    .estimate-main {
        grid-template-columns: 1fr;
        gap: 45px;

        padding: 65px 0;
    }

    .estimate-side {
        max-width: 500px;
        justify-self: start;
    }

    .estimate-main h2 {
        font-size: clamp(70px,15vw,120px);
    }

}


/* ==========================================================
   ESTIMATE <= 600
========================================================== */

@media (max-width: 600px) {

    .estimate-inner {
        padding-top: 40px;
        padding-bottom: 35px;
    }

    .estimate-main {
        padding: 55px 0;
    }

    .estimate-main h2 {
        font-size: 68px;
    }

    .estimate-button {
        height: 78px;
    }

    .estimate-bottom {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .estimate-bottom span {
        padding-top: 15px;
    }

    .estimate-bottom span:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

}
/* ==========================================================
   ESTIMATE MODAL
========================================================== */

body.modal-open {
    overflow: hidden;
}

.estimate-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;

    visibility: hidden;
    pointer-events: none;
}

.estimate-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}


/* BACKDROP */

.estimate-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.76);
    backdrop-filter: blur(5px);

    opacity: 0;
    transition: opacity .55s ease;
}

.estimate-modal.is-open .estimate-modal-backdrop {
    opacity: 1;
}


/* PANEL */

.estimate-modal-panel {
    position: absolute;
    top: 0;
    right: 0;

    width: min(1180px, 92vw);
    height: 100%;

    overflow-y: auto;

    background:
        radial-gradient(
            circle at 0 100%,
            rgba(174,106,64,.12),
            transparent 30%
        ),
        #0b0e0f;

    color: #fff;

    transform: translateX(100%);

    transition:
        transform .7s cubic-bezier(.76,0,.24,1);
}

.estimate-modal.is-open .estimate-modal-panel {
    transform: translateX(0);
}


/* TOP */

.estimate-modal-top {
    height: 92px;

    display: grid;
    grid-template-columns: 180px 1fr 90px;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.estimate-modal-brand {
    padding-left: 40px;

    font-size: 13px;
    line-height: .95;
    font-weight: 800;

    letter-spacing: .15em;
}

.estimate-modal-brand span,
.estimate-modal-brand strong {
    display: block;
}

.estimate-modal-brand strong {
    margin-top: 5px;
    color: #c58258;
}

.estimate-modal-label {
    padding-left: 35px;

    color: rgba(255,255,255,.35);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .25em;

    border-left: 1px solid rgba(255,255,255,.12);
}


/* CLOSE */

.estimate-modal-close {
    position: relative;

    width: 90px;
    height: 92px;

    background: transparent;

    border-left: 1px solid rgba(255,255,255,.12);

    cursor: pointer;
}

.estimate-modal-close span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 25px;
    height: 1px;

    background: #fff;

    transition: background .3s ease;
}

.estimate-modal-close span:first-child {
    transform: translate(-50%,-50%) rotate(45deg);
}

.estimate-modal-close span:last-child {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.estimate-modal-close:hover span {
    background: #c58258;
}


/* BODY */

.estimate-modal-body {
    min-height: calc(100vh - 92px);

    display: grid;
    grid-template-columns: .78fr 1.22fr;
}


/* INTRO */

.estimate-modal-intro {
    padding: 75px 55px 60px 55px;

    border-right: 1px solid rgba(255,255,255,.12);
}

.estimate-modal-index {
    color: #bf7d53;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
}

.estimate-modal-intro h2 {
    margin: 38px 0 0;

    color: #fff;

    font-size: clamp(55px,5vw,78px);
    line-height: .88;

    font-weight: 800;
    letter-spacing: -.065em;
}

.estimate-modal-intro h2 span {
    color: #b97850;
}

.estimate-modal-intro > p {
    max-width: 320px;

    margin: 32px 0 0;

    color: rgba(255,255,255,.48);

    font-size: 12px;
    line-height: 1.8;
}

.estimate-modal-note {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 45px;

    color: rgba(255,255,255,.3);

    font-size: 9px;
}

.estimate-modal-note span {
    width: 32px;
    height: 1px;

    background: #ad704a;
}


/* FORM */

.estimate-form {
    padding: 55px;
}


/* UPLOAD */

.estimate-upload {
    position: relative;

    min-height: 145px;

    display: grid;
    grid-template-columns: 45px 1fr 45px;
    align-items: center;
    gap: 22px;

    padding: 25px;

    border: 1px dashed rgba(255,255,255,.22);

    cursor: pointer;

    transition:
        border-color .35s ease,
        background .35s ease;
}

.estimate-upload:hover {
    border-color: #b97850;
    background: rgba(185,120,80,.04);
}

.estimate-upload-number,
.estimate-field-number {
    color: #b97850;

    font-size: 9px;
    font-weight: 700;
}

.estimate-upload-copy small,
.estimate-field small {
    display: block;

    margin-bottom: 9px;

    color: rgba(255,255,255,.30);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .22em;
}

.estimate-upload-copy strong {
    display: block;

    font-size: 20px;
    font-weight: 500;
}

.estimate-upload-copy em {
    display: block;

    margin-top: 7px;

    color: rgba(255,255,255,.32);

    font-size: 9px;
    font-style: normal;
}

.estimate-upload-plus {
    color: #b97850;

    font-size: 35px;
    font-weight: 200;
}


/* FIELD */

.estimate-field {
    min-height: 110px;

    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 22px;

    border-bottom: 1px solid rgba(255,255,255,.13);
}

.estimate-field label {
    display: block;
}

.estimate-field input,
.estimate-field select {
    width: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    font-family: inherit;
    font-size: 17px;
}

.estimate-field select {
    cursor: pointer;
}

.estimate-field select option {
    color: #111;
}

.estimate-field input::placeholder {
    color: rgba(255,255,255,.65);
}


/* SUBMIT */

.estimate-submit {
    position: relative;

    width: 100%;
    height: 82px;

    margin-top: 35px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid #b97850;

    background: transparent;
    color: #fff;

    cursor: pointer;
}

.estimate-submit::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b97850;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}

.estimate-submit span,
.estimate-submit i {
    position: relative;
    z-index: 2;
}

.estimate-submit span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .05em;
}

.estimate-submit i {
    color: #d39a71;

    font-size: 22px;
    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}

.estimate-submit:hover::before {
    transform: translateY(0);
}

.estimate-submit:hover i {
    color: #fff;
    transform: translateX(6px);
}


/* ==========================================================
   ESTIMATE MODAL <= 800
========================================================== */

@media (max-width: 800px) {

    .estimate-modal-panel {
        width: 100%;
    }

    .estimate-modal-body {
        grid-template-columns: 1fr;
    }

    .estimate-modal-intro {
        padding: 55px 30px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .estimate-form {
        padding: 35px 30px 55px;
    }

}


/* ==========================================================
   ESTIMATE MODAL <= 500
========================================================== */

@media (max-width: 500px) {

    .estimate-modal-top {
        height: 75px;
        grid-template-columns: 1fr 75px;
    }

    .estimate-modal-brand {
        padding-left: 22px;
    }

    .estimate-modal-label {
        display: none;
    }

    .estimate-modal-close {
        width: 75px;
        height: 75px;
    }

    .estimate-modal-body {
        min-height: calc(100vh - 75px);
    }

    .estimate-modal-intro h2 {
        font-size: 52px;
    }

    .estimate-upload {
        grid-template-columns: 30px 1fr 30px;
        gap: 12px;

        padding: 20px 15px;
    }

    .estimate-field {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }

}
/* ==========================================================
   COOPERATION — LIGHT VERSION
========================================================== */

.cooperation {
    position: relative;
    min-height: 720px;

    display: grid;
    grid-template-columns: 1.08fr .92fr;

    overflow: hidden;

    background: #f2f0ec;
    color: #17191a;
}


/* ==========================================================
   LEFT VISUAL — TYPOGRAPHIC
========================================================== */

.cooperation-visual {
    position: relative;
    min-height: 720px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 70%,
            rgba(180,111,67,.09),
            transparent 32%
        ),
        #ebe8e2;

    border-right: 1px solid rgba(20,22,23,.12);
}


/* old image is intentionally hidden */

.cooperation-visual img {
    display: none;
}

.cooperation-visual-shade {
    display: none;
}


/* giant graphic number */

.cooperation-visual::before {
    content: "01—03";

    position: absolute;

    left: 55px;
    top: 50%;

    transform: translateY(-54%);

    color: #17191a;

    font-size: clamp(115px, 11.5vw, 185px);
    line-height: .8;

    font-weight: 800;
    letter-spacing: -.09em;

    white-space: nowrap;
}


/* outline duplicate */

.cooperation-visual::after {
    content: "ФОРМАТ";

    position: absolute;

    left: 58px;
    top: calc(50% + 105px);

    color: transparent;

    font-size: clamp(70px, 7vw, 110px);
    line-height: 1;

    font-weight: 800;
    letter-spacing: -.065em;

    -webkit-text-stroke:
        1px rgba(23,25,26,.11);

    white-space: nowrap;
}


/* CAPTION */

.cooperation-visual-caption {
    position: absolute;

    left: 60px;
    bottom: 48px;

    display: flex;
    align-items: center;
    gap: 18px;

    color: rgba(23,25,26,.45);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .25em;
}

.cooperation-visual-caption i {
    display: block;

    width: 45px;
    height: 1px;

    background: #b7774f;
}


/* top number from old composition */

.cooperation-visual-number {
    position: absolute;

    top: 55px;
    right: 50px;

    color: #a96d47;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .22em;
}


/* subtle lines */

.cooperation-visual > * {
    z-index: 2;
}

.cooperation-visual {
    background-color: #ebe8e2;
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.cooperation-content {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 62px 60px 48px;

    background: #f2f0ec;
    color: #17191a;
}


/* technical diagonal pattern */

.cooperation-content::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .022;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 34px,
            #17191a 35px,
            transparent 36px
        );

    pointer-events: none;
}

.cooperation-head,
.cooperation-list,
.cooperation-cta {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   HEAD
========================================================== */

.cooperation-head {
    padding-bottom: 34px;
}

.cooperation-head .section-eyebrow {
    color: #a96d47;
}

.cooperation-head h2 {
    margin: 22px 0 0;

    color: #17191a;

    font-size: clamp(48px, 4.15vw, 66px);
    line-height: .9;

    font-weight: 800;
    letter-spacing: -.06em;

    text-transform: uppercase;
}

.cooperation-head h2 span {
    color: #ad704a;
}

.cooperation-head p {
    max-width: 440px;

    margin: 22px 0 0;

    color: #747575;

    font-size: 11px;
    line-height: 1.7;
}


/* ==========================================================
   LIST
========================================================== */

.cooperation-list {
    border-top: 1px solid rgba(20,22,23,.14);
}

.cooperation-item {
    position: relative;

    min-height: 105px;

    display: grid;
    grid-template-columns: 45px 1fr 30px;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid rgba(20,22,23,.14);

    transition:
        padding .4s cubic-bezier(.2,.7,.2,1),
        background .35s ease;
}

.cooperation-number {
    color: #a96d47;

    font-size: 9px;
    font-weight: 700;
}

.cooperation-label {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .23em;
}

.cooperation-item h3 {
    margin: 0;

    color: #191b1c;

    font-size: 19px;
    line-height: 1.25;

    font-weight: 600;
    letter-spacing: -.025em;
}

.cooperation-item p {
    max-width: 430px;

    margin: 6px 0 0;

    color: #7b7b7b;

    font-size: 9px;
    line-height: 1.6;
}

.cooperation-arrow {
    color: rgba(23,25,26,.20);

    font-size: 19px;

    transition:
        color .35s ease,
        transform .35s ease;
}


/* ==========================================================
   ITEM HOVER
========================================================== */

.cooperation-item::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: -60px;

    width: 2px;

    background: #b7774f;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}

.cooperation-item:hover {
    padding-left: 8px;

    background: rgba(255,255,255,.28);
}

.cooperation-item:hover::before {
    transform: scaleY(1);
}

.cooperation-item:hover .cooperation-arrow {
    color: #b7774f;

    transform: translate(4px,-4px);
}


/* ==========================================================
   CTA
========================================================== */

.cooperation-cta {
    position: relative;

    width: 100%;
    height: 68px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
    padding: 0 25px;

    overflow: hidden;

    border: 1px solid #b7774f;

    background: transparent;
    color: #191b1c;

    cursor: pointer;
}

.cooperation-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b7774f;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}

.cooperation-cta span,
.cooperation-cta i {
    position: relative;
    z-index: 2;

    transition: color .35s ease;
}

.cooperation-cta span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .06em;
}

.cooperation-cta i {
    color: #a96d47;

    font-size: 20px;
    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}

.cooperation-cta:hover {
    color: #fff;
}

.cooperation-cta:hover::before {
    transform: translateY(0);
}

.cooperation-cta:hover i {
    color: #fff;

    transform: translateX(5px);
}


/* ==========================================================
   DECORATIVE VERTICAL INDEX
========================================================== */

.cooperation::before {
    content: "СПІВПРАЦЯ";

    position: absolute;

    left: 23px;
    top: 50%;

    z-index: 3;

    transform:
        translateY(-50%)
        rotate(-90deg);

    transform-origin: center;

    color: rgba(23,25,26,.24);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .45em;

    pointer-events: none;
}


/* ==========================================================
   COOPERATION <= 1100
========================================================== */

@media (max-width: 1100px) {

    .cooperation {
        min-height: 0;

        grid-template-columns: 1fr;
    }

    .cooperation-visual {
        min-height: 420px;

        border-right: 0;
        border-bottom: 1px solid rgba(20,22,23,.12);
    }

    .cooperation-visual::before {
        left: 45px;

        font-size: clamp(100px,17vw,170px);
    }

    .cooperation-visual::after {
        left: 48px;
        top: calc(50% + 90px);
    }

    .cooperation-content {
        padding: 70px 45px 55px;
    }

}


/* ==========================================================
   COOPERATION <= 600
========================================================== */

@media (max-width: 600px) {

    .cooperation::before {
        display: none;
    }

    .cooperation-visual {
        min-height: 320px;
    }

    .cooperation-visual::before {
        left: 22px;

        font-size: 82px;
    }

    .cooperation-visual::after {
        left: 24px;
        top: calc(50% + 55px);

        font-size: 55px;
    }

    .cooperation-visual-caption {
        left: 22px;
        bottom: 23px;
    }

    .cooperation-visual-number {
        top: 25px;
        right: 22px;
    }

    .cooperation-content {
        padding: 60px 22px 42px;
    }

    .cooperation-head h2 {
        font-size: 46px;
    }

    .cooperation-item {
        min-height: 128px;

        grid-template-columns: 30px 1fr 20px;
        gap: 12px;
    }

}
/* ==========================================================
   FAQ
========================================================== */

.faq {
    position: relative;
    overflow: hidden;

    min-height: 650px;

    padding: 78px 0 72px;

    background:
        radial-gradient(
            circle at 12% 70%,
            rgba(177,107,65,.12),
            transparent 27%
        ),
        #0a0d0e;

    color: #fff;
}


/* technical background */

.faq::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 52%;
    height: 100%;

    opacity: .035;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 34px,
            #fff 35px,
            transparent 36px
        );

    pointer-events: none;
}


.faq-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .78fr 1.22fr;

    gap: 115px;
}


/* ==========================================================
   LEFT
========================================================== */

.faq-left {
    position: relative;
}

.faq-left .section-eyebrow {
    color: #bd7a50;
}

.faq-left h2 {
    margin: 27px 0 0;

    color: #fff;

    font-size: clamp(68px, 6.4vw, 100px);
    line-height: .77;

    font-weight: 800;
    letter-spacing: -.075em;

    text-transform: uppercase;
}

.faq-left h2 span {
    color: #b97850;
}


/* ==========================================================
   ANSWER
========================================================== */

.faq-answer-box {
    max-width: 430px;

    margin-top: 48px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.14);
}

.faq-answer-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-answer-number {
    color: #c17e54;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;
}

.faq-answer-label {
    color: rgba(255,255,255,.26);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .27em;
}

.faq-answer-text {
    min-height: 66px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.52);

    font-size: 11px;
    line-height: 1.75;

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.faq-answer-text.is-changing {
    opacity: 0;
    transform: translateY(7px);
}


/* ==========================================================
   CONTACT
========================================================== */

.faq-contact {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 55px;

    margin-top: 25px;
    padding: 0 0 10px;

    overflow: hidden;

    background: transparent;
    color: #fff;

    cursor: pointer;
}

.faq-contact::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;

    background: #b97850;

    transform-origin: left;

    transition: transform .35s ease;
}

.faq-contact span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .06em;
}

.faq-contact i {
    color: #cf9168;

    font-size: 19px;
    font-style: normal;

    transition: transform .35s ease;
}

.faq-contact:hover::after {
    transform: scaleX(.7);
}

.faq-contact:hover i {
    transform: translateX(5px);
}


/* ==========================================================
   RIGHT
========================================================== */

.faq-right {
    border-top: 1px solid rgba(255,255,255,.14);
}

.faq-topline {
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255,255,255,.27);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .27em;

    border-bottom: 1px solid rgba(255,255,255,.14);
}


/* ==========================================================
   FAQ ITEM
========================================================== */

.faq-item {
    position: relative;

    width: 100%;
    min-height: 91px;

    display: grid;
    grid-template-columns: 58px 1fr 35px;
    align-items: center;
    gap: 20px;

    padding: 0;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);

    background: transparent;
    color: #fff;

    text-align: left;

    cursor: pointer;

    transition:
        padding .4s cubic-bezier(.2,.7,.2,1),
        background .35s ease;
}


.faq-number {
    color: rgba(255,255,255,.27);

    font-size: 9px;
    font-weight: 700;

    transition: color .35s ease;
}


.faq-question {
    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.3;

    font-weight: 500;
    letter-spacing: -.02em;

    transition: color .35s ease;
}


/* PLUS */

.faq-plus {
    position: relative;

    justify-self: end;

    width: 17px;
    height: 17px;
}

.faq-plus::before,
.faq-plus::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    background: rgba(255,255,255,.48);

    transition:
        background .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1);
}

.faq-plus::before {
    width: 17px;
    height: 1px;

    transform: translate(-50%,-50%);
}

.faq-plus::after {
    width: 1px;
    height: 17px;

    transform: translate(-50%,-50%);
}


/* active */

.faq-item.is-active {
    padding-left: 12px;

    background: rgba(255,255,255,.018);
}

.faq-item.is-active .faq-number {
    color: #c17e54;
}

.faq-item.is-active .faq-question {
    color: #fff;
}

.faq-item.is-active .faq-plus::before {
    background: #c17e54;

    transform:
        translate(-50%,-50%)
        rotate(45deg);
}

.faq-item.is-active .faq-plus::after {
    background: #c17e54;

    transform:
        translate(-50%,-50%)
        rotate(45deg);
}


/* hover */

.faq-item:hover .faq-number {
    color: #c17e54;
}

.faq-item:hover .faq-question {
    color: #fff;
}


/* active side marker */

.faq-item::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: -22px;

    width: 2px;

    background: #b97850;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}

.faq-item.is-active::before {
    transform: scaleY(1);
}


/* ==========================================================
   FAQ <= 1000
========================================================== */

@media (max-width: 1000px) {

    .faq {
        min-height: 0;

        padding: 90px 0;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .faq-answer-box {
        max-width: 600px;
    }

}


/* ==========================================================
   FAQ <= 600
========================================================== */

@media (max-width: 600px) {

    .faq {
        padding: 70px 0;
    }

    .faq-inner {
        gap: 50px;
    }

    .faq-left h2 {
        font-size: 66px;
    }

    .faq-answer-box {
        margin-top: 38px;
    }

    .faq-item {
        min-height: 105px;

        grid-template-columns: 32px 1fr 22px;
        gap: 10px;
    }

    .faq-question {
        font-size: 16px;
    }

}
/* ==========================================================
   FAQ MOBILE — STICKY ANSWER
========================================================== */

@media (max-width: 600px) {

    .faq {
        overflow: visible;
    }

    .faq::before {
        position: absolute;
    }

    .faq-inner {
        display: block;
    }


    /* ------------------------------------------------------
       STICKY LEFT / ANSWER
    ------------------------------------------------------ */

    .faq-left {
        position: sticky;
        top: 0;

        z-index: 20;

        padding: 28px 0 25px;

        background: #0a0d0e;
    }


    /* прибираємо надто великий заголовок на sticky */

    .faq-left .section-eyebrow {
        display: none;
    }

    .faq-left h2 {
        margin: 0;

        font-size: 42px;
        line-height: .88;
    }

    .faq-left h2 br {
        display: none;
    }

    .faq-left h2 span {
        margin-left: 8px;
    }


    /* ------------------------------------------------------
       ANSWER
    ------------------------------------------------------ */

    .faq-answer-box {
        max-width: none;

        margin-top: 22px;
        padding-top: 15px;
    }

    .faq-answer-text {
        min-height: 54px;

        margin-top: 12px;

        font-size: 10px;
        line-height: 1.6;
    }


    /* CTA на sticky не потрібен */

    .faq-contact {
        display: none;
    }


    /* ------------------------------------------------------
       QUESTIONS
    ------------------------------------------------------ */

    .faq-right {
        position: relative;
        z-index: 5;

        margin-top: 30px;

        background: #0a0d0e;
    }

    .faq-topline {
        height: 45px;
    }

    .faq-item {
        min-height: 100px;

        grid-template-columns: 30px 1fr 22px;
        gap: 10px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.3;
    }

}
/* ==========================================================
   FINAL CONTACT
========================================================== */

.final-contact {
    position: relative;

    padding: 75px 0 0;

    overflow: hidden;

    background: #f1efeb;
    color: #17191a;
}


/* subtle background index */

.final-contact::before {
    content: "CONTACT";

    position: absolute;

    right: -25px;
    top: 70px;

    color: transparent;

    font-size: clamp(110px, 14vw, 220px);
    line-height: 1;

    font-weight: 800;
    letter-spacing: -.07em;

    -webkit-text-stroke:
        1px rgba(20,22,23,.055);

    pointer-events: none;
}


.final-contact-inner {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   TOP
========================================================== */

.final-contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 28px;

    border-bottom: 1px solid rgba(20,22,23,.15);
}

.final-contact-top .section-eyebrow {
    color: #a96d47;
}

.final-contact-index {
    color: #9b9b98;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .25em;
}


/* ==========================================================
   MAIN
========================================================== */

.final-contact-main {
    min-height: 440px;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;

    gap: 100px;
}


.final-contact-title h2 {
    margin: 0;

    color: #17191a;

    font-size: clamp(80px, 9vw, 145px);
    line-height: .76;

    font-weight: 800;
    letter-spacing: -.075em;

    text-transform: uppercase;
}

.final-contact-title h2 span {
    color: #b7774f;
}


/* ==========================================================
   ACTION
========================================================== */

.final-contact-action {
    max-width: 430px;
}

.final-contact-lead {
    max-width: 360px;

    margin: 0 0 35px;

    color: #747474;

    font-size: 12px;
    line-height: 1.75;
}


.final-contact-button {
    position: relative;

    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 27px;

    overflow: hidden;

    border: 1px solid #b7774f;

    background: transparent;
    color: #17191a;

    cursor: pointer;
}


.final-contact-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b7774f;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


.final-contact-button span,
.final-contact-button i {
    position: relative;
    z-index: 2;
}


.final-contact-button span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .06em;
}


.final-contact-button i {
    color: #ad704a;

    font-size: 22px;
    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}


.final-contact-button:hover {
    color: #fff;
}

.final-contact-button:hover::before {
    transform: translateY(0);
}

.final-contact-button:hover i {
    color: #fff;

    transform: translateX(6px);
}


/* ==========================================================
   CONTACT CELLS
========================================================== */

.final-contact-bottom {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;

    border-top: 1px solid rgba(20,22,23,.15);
}


.final-contact-cell {
    min-height: 125px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px 35px;

    border-right: 1px solid rgba(20,22,23,.15);
}


.final-contact-cell:first-child {
    padding-left: 0;
}

.final-contact-cell:last-child {
    padding-right: 0;
    border-right: 0;
}


.final-contact-label {
    display: block;

    margin-bottom: 13px;

    color: #9b9b98;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .25em;
}


.final-contact-phone {
    width: fit-content;

    color: #17191a;

    font-size: clamp(23px, 2vw, 32px);
    font-weight: 600;

    letter-spacing: -.035em;

    text-decoration: none;
}


.final-contact-cell p {
    max-width: 270px;

    margin: 0;

    color: #727272;

    font-size: 10px;
    line-height: 1.65;
}


.final-call-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #17191a;

    text-decoration: none;
}

.final-call-link span {
    font-size: 10px;
    font-weight: 700;
}

.final-call-link i {
    color: #b7774f;

    font-size: 20px;
    font-style: normal;

    transition: transform .35s ease;
}

.final-call-link:hover i {
    transform: translate(4px,-4px);
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    background: #090c0d;
    color: #fff;
}


.site-footer-inner {
    min-height: 145px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;

    gap: 40px;
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}


.footer-brand strong {
    color: #fff;

    font-size: 15px;
    line-height: .9;

    letter-spacing: .12em;
}


.footer-brand strong::first-line {
    color: #fff;
}


.footer-brand span {
    padding-left: 22px;

    border-left: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.38);

    font-size: 7px;
    line-height: 1.4;

    letter-spacing: .13em;
}


.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}


.footer-nav a {
    color: rgba(255,255,255,.48);

    font-size: 9px;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-nav a:hover {
    color: #c17e54;
}


.footer-copy {
    justify-self: end;

    color: rgba(255,255,255,.27);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .17em;
}


/* ==========================================================
   FINAL CONTACT <= 900
========================================================== */

@media (max-width: 900px) {

    .final-contact-main {
        min-height: 0;

        grid-template-columns: 1fr;
        gap: 55px;

        padding: 70px 0;
    }

    .final-contact-bottom {
        grid-template-columns: 1fr;
    }

    .final-contact-cell {
        min-height: 105px;

        padding: 25px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(20,22,23,.15);
    }

    .final-contact-cell:last-child {
        border-bottom: 0;
    }


    .site-footer-inner {
        grid-template-columns: 1fr;

        padding-top: 45px;
        padding-bottom: 45px;

        gap: 35px;
    }

    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-copy {
        justify-self: start;
    }

}


/* ==========================================================
   FINAL CONTACT <= 600
========================================================== */

@media (max-width: 600px) {

    .final-contact {
        padding-top: 50px;
    }

    .final-contact-main {
        gap: 45px;

        padding: 55px 0;
    }

    .final-contact-title h2 {
        font-size: 70px;
    }

    .final-contact-button {
        height: 72px;
    }

    .final-contact-phone {
        font-size: 27px;
    }

    .footer-nav {
        gap: 20px;
    }

}
/* ==========================================================
   QUICK CONTACT
========================================================== */

.quick-contact {
    position: relative;
    z-index: 9000;
}


/* ==========================================================
   TRIGGER — DESKTOP
========================================================== */

.quick-contact-trigger {
    position: fixed;

    right: 0;
    top: 50%;

    z-index: 9002;

    width: 54px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 24px 0 20px;

    border: 1px solid rgba(183,119,79,.75);
    border-right: 0;

    background: rgba(10,13,14,.94);
    color: #fff;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        width .35s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        border-color .35s ease;
}


.quick-contact-trigger::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 2px;
    height: 0;

    background: #b7774f;

    transition: height .45s cubic-bezier(.2,.7,.2,1);
}


.quick-contact-trigger:hover {
    width: 62px;

    background: #101415;

    border-color: #b7774f;
}


.quick-contact-trigger:hover::before {
    height: 100%;
}


.quick-contact-trigger-text {
    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .32em;
}


.quick-contact-trigger-arrow {
    color: #c9865b;

    font-size: 18px;

    transition: transform .35s ease;
}


.quick-contact-trigger:hover .quick-contact-trigger-arrow {
    transform: translate(3px,-3px);
}


/* ==========================================================
   BACKDROP
========================================================== */

.quick-contact-backdrop {
    position: fixed;
    inset: 0;

    z-index: 8998;

    background: rgba(4,6,7,.62);

    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        opacity .4s ease,
        visibility .4s ease;

    cursor: pointer;
}


.quick-contact.is-open .quick-contact-backdrop {
    opacity: 1;
    visibility: visible;
}


/* ==========================================================
   PANEL
========================================================== */

.quick-contact-panel {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 9001;

    width: min(430px, 100%);

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(183,119,79,.12),
            transparent 32%
        ),
        #0b0e0f;

    color: #fff;

    border-left: 1px solid rgba(255,255,255,.1);

    transform: translateX(101%);

    transition:
        transform .55s cubic-bezier(.2,.75,.2,1);

    scrollbar-width: thin;
    scrollbar-color:
        rgba(183,119,79,.4)
        transparent;
}


.quick-contact.is-open .quick-contact-panel {
    transform: translateX(0);
}


/* subtle technical pattern */

.quick-contact-panel::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .025;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 34px,
            #fff 35px,
            transparent 36px
        );

    pointer-events: none;
}


/* ==========================================================
   PANEL TOP
========================================================== */

.quick-contact-panel-top {
    position: relative;
    z-index: 2;

    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-shrink: 0;

    padding: 0 36px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.quick-contact-panel-top > span {
    color: rgba(255,255,255,.38);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .27em;
}


.quick-contact-close {
    position: relative;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    background: transparent;
    color: rgba(255,255,255,.55);

    font-family: inherit;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        color .3s ease,
        transform .35s ease;
}


.quick-contact-close:hover {
    color: #c9865b;

    transform: rotate(90deg);
}


/* ==========================================================
   BODY
========================================================== */

.quick-contact-panel-body {
    position: relative;
    z-index: 2;

    flex: 1;

    padding: 48px 36px 35px;
}


/* ==========================================================
   HEADING
========================================================== */

.quick-contact-heading .section-eyebrow {
    color: #bd7a50;
}


.quick-contact-heading h2 {
    margin: 22px 0 0;

    color: #fff;

    font-size: 50px;
    line-height: .86;

    font-weight: 800;
    letter-spacing: -.065em;

    text-transform: uppercase;
}


.quick-contact-heading h2 span {
    color: #b97850;
}


.quick-contact-heading > p {
    max-width: 310px;

    margin: 24px 0 0;

    color: rgba(255,255,255,.43);

    font-size: 10px;
    line-height: 1.7;
}


/* ==========================================================
   CONTACT LINKS
========================================================== */

.quick-contact-links {
    margin-top: 42px;

    border-top: 1px solid rgba(255,255,255,.13);
}


.quick-contact-link {
    position: relative;

    min-height: 98px;

    display: grid;
    grid-template-columns: 32px 1fr 25px;
    align-items: center;
    gap: 14px;

    border-bottom: 1px solid rgba(255,255,255,.13);

    color: #fff;
    text-decoration: none;

    transition:
        padding .35s cubic-bezier(.2,.7,.2,1),
        background .35s ease;
}


.quick-contact-link::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: -36px;

    width: 2px;

    background: #b7774f;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}


.quick-contact-link:hover {
    padding-left: 7px;

    background: rgba(255,255,255,.018);
}


.quick-contact-link:hover::before {
    transform: scaleY(1);
}


.quick-contact-number {
    color: #bd7a50;

    font-size: 8px;
    font-weight: 700;
}


.quick-contact-link-content {
    display: flex;
    flex-direction: column;
}


.quick-contact-link-content small {
    margin-bottom: 5px;

    color: rgba(255,255,255,.25);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: .23em;
}


.quick-contact-link-content strong {
    color: rgba(255,255,255,.94);

    font-size: 17px;
    line-height: 1.2;

    font-weight: 600;
    letter-spacing: -.025em;
}


.quick-contact-link-content > span {
    margin-top: 5px;

    color: rgba(255,255,255,.34);

    font-size: 8px;
}


.quick-contact-link-arrow {
    justify-self: end;

    color: rgba(255,255,255,.25);

    font-size: 18px;

    transition:
        color .35s ease,
        transform .35s ease;
}


.quick-contact-link:hover .quick-contact-link-arrow {
    color: #c9865b;

    transform: translate(3px,-3px);
}


/* ==========================================================
   ESTIMATE INSIDE CONTACT
========================================================== */

.quick-contact-estimate {
    margin-top: 38px;
    padding-top: 26px;

    border-top: 1px solid rgba(255,255,255,.13);
}


.quick-contact-estimate > div > span {
    color: #c17e54;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;
}


.quick-contact-estimate > div > p {
    max-width: 300px;

    margin: 10px 0 22px;

    color: rgba(255,255,255,.39);

    font-size: 9px;
    line-height: 1.65;
}


.quick-contact-estimate-button {
    position: relative;

    width: 100%;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 22px;

    overflow: hidden;

    border: 1px solid rgba(183,119,79,.8);

    background: transparent;
    color: #fff;

    cursor: pointer;
}


.quick-contact-estimate-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b7774f;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


.quick-contact-estimate-button span,
.quick-contact-estimate-button i {
    position: relative;
    z-index: 2;
}


.quick-contact-estimate-button span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .07em;
}


.quick-contact-estimate-button i {
    color: #c9865b;

    font-size: 19px;
    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}


.quick-contact-estimate-button:hover::before {
    transform: translateY(0);
}


.quick-contact-estimate-button:hover i {
    color: #fff;

    transform: translateX(5px);
}


/* ==========================================================
   PANEL FOOTER
========================================================== */

.quick-contact-panel-footer {
    position: relative;
    z-index: 2;

    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-shrink: 0;

    padding: 0 36px;

    border-top: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.24);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: .18em;
}


/* ==========================================================
   OPEN STATE
========================================================== */

.quick-contact.is-open .quick-contact-trigger {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}


body.quick-contact-open {
    overflow: hidden;
}


/* ==========================================================
   QUICK CONTACT <= 600
========================================================== */

@media (max-width: 600px) {

    /* ------------------------------------------------------
       MOBILE TRIGGER
    ------------------------------------------------------ */

    .quick-contact-trigger {
        top: auto;

        right: 16px;
        bottom: 18px;

        width: auto;
        height: 48px;

        flex-direction: row;
        gap: 22px;

        padding: 0 18px;

        border: 1px solid rgba(183,119,79,.8);

        transform: none;

        box-shadow:
            0 12px 35px rgba(0,0,0,.22);
    }


    .quick-contact-trigger:hover {
        width: auto;
    }


    .quick-contact-trigger-text {
        writing-mode: initial;

        transform: none;

        font-size: 8px;

        letter-spacing: .16em;
    }


    .quick-contact-trigger-text {
        font-size: 0;
    }


    .quick-contact-trigger-text::after {
        content: "ЗВ'ЯЗАТИСЯ";

        font-size: 8px;
        font-weight: 700;

        letter-spacing: .16em;
    }


    .quick-contact-trigger-arrow {
        font-size: 16px;
    }


    /* ------------------------------------------------------
       MOBILE BOTTOM SHEET
    ------------------------------------------------------ */

    .quick-contact-panel {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: auto;
        max-height: 88dvh;

        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);

        transform: translateY(101%);

        transition:
            transform .5s cubic-bezier(.2,.75,.2,1);
    }


    .quick-contact.is-open .quick-contact-panel {
        transform: translateY(0);
    }


    /* little sheet handle */

    .quick-contact-panel::after {
        content: "";

        position: absolute;

        top: 10px;
        left: 50%;

        z-index: 5;

        width: 42px;
        height: 2px;

        background: rgba(255,255,255,.2);

        transform: translateX(-50%);
    }


    .quick-contact-panel-top {
        min-height: 62px;

        padding: 7px 22px 0;
    }


    .quick-contact-panel-body {
        padding: 30px 22px 28px;
    }


    .quick-contact-heading h2 {
        margin-top: 17px;

        font-size: 40px;
    }


    .quick-contact-heading > p {
        margin-top: 17px;
    }


    .quick-contact-links {
        margin-top: 27px;
    }


    .quick-contact-link {
        min-height: 78px;
    }


    .quick-contact-link-content strong {
        font-size: 15px;
    }


    .quick-contact-estimate {
        margin-top: 27px;
        padding-top: 22px;
    }


    .quick-contact-estimate-button {
        height: 60px;
    }


    .quick-contact-panel-footer {
        min-height: 55px;

        padding: 0 22px;
    }

}
/* ==========================================================
   QUICK CONTACT — FIT DESKTOP SCREEN
========================================================== */

@media (min-width: 601px) {

    .quick-contact-panel {
        height: 100vh;
        overflow: hidden;
    }


    .quick-contact-panel-top {
        min-height: 64px;
    }


    .quick-contact-panel-body {
        display: flex;
        flex-direction: column;

        padding: 34px 36px 24px;
    }


    .quick-contact-heading h2 {
        margin-top: 17px;

        font-size: 46px;
        line-height: .86;
    }


    .quick-contact-heading > p {
        margin-top: 18px;
        line-height: 1.55;
    }


    .quick-contact-links {
        margin-top: 28px;
    }


    .quick-contact-link {
        min-height: 82px;
    }


    .quick-contact-estimate {
        margin-top: 25px;
        padding-top: 20px;
    }


    .quick-contact-estimate > div > p {
        margin: 8px 0 17px;
    }


    .quick-contact-estimate-button {
        height: 58px;
    }


    .quick-contact-panel-footer {
        min-height: 52px;
    }

}
/* ==========================================================
   FIXED / SCROLLED HEADER
========================================================== */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 8000;

    background: transparent;
    border-bottom: 1px solid transparent;

    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}


/* ==========================================================
   SCROLLED STATE
========================================================== */

.site-header.is-scrolled {
    background: #080b0c !important;

    border-bottom: 1px solid rgba(255,255,255,.08);

    box-shadow: 0 10px 30px rgba(0,0,0,.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ==========================================================
   HEADER INNER
========================================================== */

.site-header .header-inner {
    transition:
        min-height .35s ease,
        padding .35s ease;
}


.site-header.is-scrolled .header-inner {
    min-height: 68px;
}


/* ==========================================================
   LOGO
========================================================== */

.site-header .brand {
    transition:
        transform .35s ease,
        opacity .35s ease;
}


.site-header.is-scrolled .brand {
    transform: scale(.92);
    transform-origin: left center;
}


/* ==========================================================
   NAV
========================================================== */

.site-header .main-nav a {
    transition:
        color .25s ease,
        opacity .25s ease;
}


/* ==========================================================
   HEADER LINKS
========================================================== */

.site-header a {
    -webkit-tap-highlight-color: transparent;
}
/* ==========================================================
   ABOUT
========================================================== */

.about {
    position: relative;
    overflow: hidden;

    padding: 82px 0 78px;

    background: #e8e5df;
    color: #17191a;
}


/* ==========================================================
   LAYOUT
========================================================== */

.about-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 105px;
}


/* ==========================================================
   LEFT
========================================================== */

.about-left {
    position: relative;

    min-height: 550px;

    padding-right: 45px;

    border-right: 1px solid rgba(20,22,23,.13);
}


.about-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(20,22,23,.13);
}


.about-top .section-eyebrow {
    color: #a96d47;
}


.about-index {
    color: #999;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .22em;
}


.about-left h2 {
    position: relative;
    z-index: 2;

    margin: 48px 0 0;

    color: #17191a;

    font-size: clamp(65px, 6vw, 96px);
    line-height: .82;

    font-weight: 800;
    letter-spacing: -.07em;

    text-transform: uppercase;
}


.about-left h2 span {
    color: #b7774f;
}


/* BIG BACKGROUND WORD */

.about-ghost {
    position: absolute;

    left: -5px;
    bottom: 5px;

    color: transparent;

    font-size: clamp(95px, 9vw, 145px);
    line-height: .8;

    font-weight: 800;
    letter-spacing: -.075em;

    -webkit-text-stroke:
        1px rgba(23,25,26,.09);

    pointer-events: none;
}


/* ==========================================================
   RIGHT
========================================================== */

.about-right {
    padding-top: 3px;
}


/* INTRO */

.about-intro {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 25px;

    padding-bottom: 38px;

    border-bottom: 1px solid rgba(20,22,23,.14);
}


.about-lead-number {
    padding-top: 7px;

    color: #a96d47;

    font-size: 8px;
    font-weight: 700;
}


.about-lead {
    max-width: 620px;

    margin: 0;

    color: #202223;

    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.25;

    font-weight: 500;
    letter-spacing: -.035em;
}


/* TEXT */

.about-text {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 45px;

    padding: 32px 0;
}


.about-text p {
    margin: 0;

    color: #747575;

    font-size: 10px;
    line-height: 1.75;
}


/* ==========================================================
   PRINCIPLES
========================================================== */

.about-principles {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid rgba(20,22,23,.14);
    border-bottom: 1px solid rgba(20,22,23,.14);
}


.about-principle {
    min-height: 145px;

    padding: 25px 22px;

    border-right: 1px solid rgba(20,22,23,.14);

    transition:
        background .35s ease,
        transform .35s ease;
}


.about-principle:first-child {
    padding-left: 0;
}


.about-principle:last-child {
    border-right: 0;
}


.about-principle > span {
    display: block;

    margin-bottom: 22px;

    color: #a96d47;

    font-size: 8px;
    font-weight: 700;
}


.about-principle strong {
    display: block;

    color: #191b1c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
}


.about-principle p {
    max-width: 180px;

    margin: 9px 0 0;

    color: #858585;

    font-size: 8px;
    line-height: 1.55;
}


.about-principle:hover {
    background: rgba(255,255,255,.25);
}


/* ==========================================================
   CTA
========================================================== */

.about-cta {
    position: relative;

    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding: 0 25px;

    overflow: hidden;

    border: 1px solid #b7774f;

    background: transparent;
    color: #17191a;

    cursor: pointer;
}


.about-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b7774f;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


.about-cta span,
.about-cta i {
    position: relative;
    z-index: 2;
}


.about-cta span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .07em;
}


.about-cta i {
    color: #ad704a;

    font-size: 20px;
    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}


.about-cta:hover {
    color: #fff;
}


.about-cta:hover::before {
    transform: translateY(0);
}


.about-cta:hover i {
    color: #fff;

    transform: translate(4px,-4px);
}


/* ==========================================================
   ABOUT <= 1000
========================================================== */

@media (max-width: 1000px) {

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-left {
        min-height: 400px;

        padding-right: 0;
        padding-bottom: 45px;

        border-right: 0;
        border-bottom: 1px solid rgba(20,22,23,.13);
    }

}


/* ==========================================================
   ABOUT <= 600
========================================================== */

@media (max-width: 600px) {

    .about {
        padding: 65px 0;
    }

    .about-inner {
        gap: 45px;
    }

    .about-left {
        min-height: 300px;
    }

    .about-left h2 {
        margin-top: 38px;

        font-size: 56px;
    }

    .about-ghost {
        font-size: 82px;
    }

    .about-intro {
        grid-template-columns: 28px 1fr;
        gap: 12px;
    }

    .about-lead {
        font-size: 22px;
    }

    .about-text {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-principle,
    .about-principle:first-child {
        min-height: 105px;

        padding: 22px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(20,22,23,.13);
    }

    .about-principle:last-child {
        border-bottom: 0;
    }

    .about-principle > span {
        margin-bottom: 12px;
    }

}
/* ==========================================================
   METAL DETAILS MODAL
========================================================== */

.metal-modal {
    position: fixed;
    inset: 0;

    z-index: 9500;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}


.metal-modal.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}


/* ==========================================================
   BACKDROP
========================================================== */

.metal-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(5, 7, 8, .82);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   PANEL
========================================================== */

.metal-modal-panel {
    position: relative;
    z-index: 2;

    width: min(1380px, 100%);
    height: min(760px, calc(100vh - 64px));

    display: grid;
    grid-template-columns: 46% 54%;

    overflow: hidden;

    background: #0b0f10;

    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45);

    transform:
        translateY(30px)
        scale(.985);

    transition:
        transform .55s cubic-bezier(.2,.75,.2,1);
}


.metal-modal.is-open .metal-modal-panel {
    transform:
        translateY(0)
        scale(1);
}


/* ==========================================================
   CLOSE
========================================================== */

.metal-modal-close {
    position: absolute;

    top: 0;
    right: 0;

    z-index: 10;

    height: 62px;

    display: flex;
    align-items: center;
    gap: 24px;

    padding: 0 24px;

    border: 0;
    border-left: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);

    background: rgba(8,11,12,.72);

    color: rgba(255,255,255,.65);

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease;
}


.metal-modal-close span {
    font-size: 7px;
    font-weight: 700;

    letter-spacing: .18em;
}


.metal-modal-close i {
    color: #c17b4e;

    font-size: 24px;
    line-height: 1;

    font-style: normal;
    font-weight: 300;

    transition:
        transform .35s ease;
}


.metal-modal-close:hover {
    background: #c17b4e;
    color: #fff;
}


.metal-modal-close:hover i {
    color: #fff;

    transform: rotate(90deg);
}


/* ==========================================================
   VISUAL
========================================================== */

.metal-modal-visual {
    position: relative;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    background: #111;
}


.metal-modal-visual > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.06);

    transition:
        transform 1.1s cubic-bezier(.2,.7,.2,1);
}


.metal-modal.is-open .metal-modal-visual > img {
    transform: scale(1);
}


.metal-modal-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,7,8,.24) 0%,
            rgba(5,7,8,.08) 35%,
            rgba(5,7,8,.76) 100%
        );
}


/* ==========================================================
   VISUAL TOP
========================================================== */

.metal-modal-visual-top {
    position: absolute;

    top: 32px;
    left: 34px;
    right: 34px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.20);

    color: rgba(255,255,255,.70);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .22em;
}


.metal-modal-visual-top span:first-child {
    color: #d38a58;
}


/* ==========================================================
   VISUAL TITLE
========================================================== */

.metal-modal-visual-title {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.metal-modal-visual-title > span {
    color: #d38a58;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .15em;
}


.metal-modal-visual-title strong {
    max-width: 85%;

    color: #fff;

    font-size: clamp(46px, 5vw, 82px);
    line-height: .86;

    font-weight: 800;

    letter-spacing: -.065em;

    text-align: right;
    text-transform: uppercase;
}


/* ==========================================================
   CONTENT
========================================================== */

.metal-modal-content {
    position: relative;

    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    padding:
        86px
        clamp(38px, 4vw, 68px)
        40px;

    overflow: hidden;

    color: #fff;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 54px,
            rgba(255,255,255,.018) 55px,
            transparent 56px
        ),
        #0b0f10;
}


/* decorative number */

.metal-modal-content::after {
    content: attr(data-number);

    position: absolute;

    right: -10px;
    top: 75px;

    color: transparent;

    font-size: 190px;
    line-height: 1;

    font-weight: 800;
    letter-spacing: -.08em;

    -webkit-text-stroke:
        1px rgba(255,255,255,.035);

    pointer-events: none;
}


/* ==========================================================
   HEADING
========================================================== */

.metal-modal-heading {
    position: relative;
    z-index: 2;

    max-width: 640px;
}


.metal-modal-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #c17b4e;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .23em;
}


.metal-modal-heading h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(48px, 4.3vw, 72px);
    line-height: .92;

    font-weight: 800;
    letter-spacing: -.06em;

    text-transform: uppercase;
}


.metal-modal-heading p {
    max-width: 520px;

    margin: 22px 0 0;

    color: rgba(255,255,255,.48);

    font-size: 10px;
    line-height: 1.7;
}


/* ==========================================================
   INFORMATION
========================================================== */

.metal-modal-info {
    position: relative;
    z-index: 2;

    margin-top: auto;

    border-top: 1px solid rgba(255,255,255,.10);
}


.metal-modal-row {
    display: grid;
    grid-template-columns: 52px 1fr;

    gap: 20px;

    min-height: 86px;

    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.10);
}


.metal-modal-row-number {
    color: #c17b4e;

    font-size: 8px;
    font-weight: 700;
}


.metal-modal-row small {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.28);

    font-size: 6px;
    font-weight: 700;

    letter-spacing: .20em;
}


.metal-modal-row strong {
    display: block;

    color: rgba(255,255,255,.90);

    font-size: 14px;
    line-height: 1.3;

    font-weight: 500;
    letter-spacing: -.015em;
}


/* ==========================================================
   ESTIMATE BUTTON
========================================================== */

.metal-modal-estimate {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding: 0 26px;

    overflow: hidden;

    border: 1px solid #b87349;

    background: transparent;
    color: #fff;

    cursor: pointer;
}


.metal-modal-estimate::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #b87349;

    transform: translateY(101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


.metal-modal-estimate span,
.metal-modal-estimate i {
    position: relative;
    z-index: 2;
}


.metal-modal-estimate span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .08em;
}


.metal-modal-estimate i {
    color: #d18a5b;

    font-size: 20px;
    line-height: 1;

    font-style: normal;

    transition:
        color .35s ease,
        transform .35s ease;
}


.metal-modal-estimate:hover::before {
    transform: translateY(0);
}


.metal-modal-estimate:hover i {
    color: #fff;

    transform: translate(4px,-4px);
}


/* ==========================================================
   BODY LOCK
========================================================== */

body.metal-modal-open {
    overflow: hidden;
}


/* ==========================================================
   <= 1050
========================================================== */

@media (max-width: 1050px) {

    .metal-modal {
        padding: 20px;
    }


    .metal-modal-panel {
        height: calc(100vh - 40px);

        grid-template-columns: 40% 60%;
    }


    .metal-modal-content {
        padding:
            80px
            35px
            32px;
    }


    .metal-modal-visual-title strong {
        font-size: 50px;
    }

}


/* ==========================================================
   <= 760 / MOBILE
========================================================== */

@media (max-width: 760px) {

    .metal-modal {
        padding: 0;
    }


    .metal-modal-panel {
        width: 100%;
        height: 100dvh;

        grid-template-columns: 1fr;
        grid-template-rows: 34% 66%;

        border: 0;
    }


    .metal-modal-close {
        height: 52px;

        padding: 0 18px;

        background: rgba(8,11,12,.88);
    }


    .metal-modal-close span {
        display: none;
    }


    .metal-modal-visual-top {
        top: 20px;
        left: 20px;
        right: 72px;
    }


    .metal-modal-visual-title {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .metal-modal-visual-title strong {
        font-size: 44px;
    }


    .metal-modal-content {
        padding:
            28px
            20px
            20px;

        overflow-y: auto;
    }


    .metal-modal-content::after {
        display: none;
    }


    .metal-modal-eyebrow {
        margin-bottom: 11px;
    }


    .metal-modal-heading h2 {
        font-size: 38px;
    }


    .metal-modal-heading p {
        margin-top: 12px;

        font-size: 9px;
        line-height: 1.55;
    }


    .metal-modal-info {
        margin-top: 22px;
    }


    .metal-modal-row {
        min-height: 68px;

        grid-template-columns: 34px 1fr;

        gap: 10px;
    }


    .metal-modal-row strong {
        font-size: 12px;
    }


    .metal-modal-estimate {
        min-height: 62px;
        height: 62px;

        margin-top: 20px;
    }

}


/* ==========================================================
   SHORT SCREENS
========================================================== */

@media (min-width: 761px) and (max-height: 760px) {

    .metal-modal {
        padding: 18px;
    }


    .metal-modal-panel {
        height: calc(100vh - 36px);
    }


    .metal-modal-content {
        padding:
            68px
            40px
            25px;
    }


    .metal-modal-heading h2 {
        font-size: 48px;
    }


    .metal-modal-heading p {
        margin-top: 14px;
    }


    .metal-modal-row {
        min-height: 68px;
    }


    .metal-modal-estimate {
        height: 60px;
        margin-top: 20px;
    }

}
/* ==========================================================
   METAL CARDS / INTERACTION
========================================================== */

.metal-card[data-metal] {
    cursor: pointer;
}


.metal-card[data-metal]:focus-visible {
    outline: 1px solid #c17b4e;
    outline-offset: -1px;
}


.metal-card[data-metal]:hover .metal-card-link i {
    transform: translateX(5px);
}


.metal-card-link i {
    transition: transform .3s ease;
}
/* ==========================================================
   ESTIMATE ANTISPAM
========================================================== */

.estimate-hp {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;
}
/* ==========================================================
   ESTIMATE PHOTO SELECTED
========================================================== */

.estimate-upload.has-file {
    border-color: #b87349;
    background: rgba(184, 115, 73, .05);
}


.estimate-upload.has-file
.estimate-upload-copy small {
    color: #b87349;
}


.estimate-upload.has-file
.estimate-upload-plus {
    color: #b87349;
}
/* ==========================================================
   CUSTOM SELECT / ESTIMATE
========================================================== */

.estimate-field-metal {
    position: relative;
    z-index: 20;
}


.estimate-field-content {
    position: relative;
    width: 100%;
}


.estimate-field-content > small {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.28);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .20em;
}


/* SELECT */

.custom-select {
    position: relative;

    width: 100%;
}


/* TRIGGER */

.custom-select-trigger {
    width: 100%;
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    font: inherit;
    font-size: 17px;
    text-align: left;

    cursor: pointer;
}


/* ARROW */

.custom-select-trigger i {
    position: relative;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    margin-right: 3px;

    border-right: 1px solid rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.9);

    transform:
        translateY(-2px)
        rotate(45deg);

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.custom-select.is-open
.custom-select-trigger i {
    border-color: #c47a4c;

    transform:
        translateY(2px)
        rotate(225deg);
}


/* DROPDOWN */

.custom-select-dropdown {
    position: absolute;

    top: calc(100% + 13px);
    left: -18px;
    right: -18px;

    z-index: 100;

    padding: 7px 0;

    background: #0b0f10;

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 24px 55px rgba(0,0,0,.45);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}


.custom-select.is-open
.custom-select-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* OPTIONS */

.custom-select-dropdown button {
    position: relative;

    width: 100%;
    min-height: 45px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 0 18px;

    border: 0;

    background: transparent;
    color: rgba(255,255,255,.72);

    font: inherit;
    font-size: 14px;
    text-align: left;

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .25s ease;
}


.custom-select-dropdown button + button {
    border-top:
        1px solid rgba(255,255,255,.055);
}


/* NUMBER */

.custom-select-dropdown button span {
    min-width: 17px;

    color: #b87349;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .08em;
}


/* HOVER */

.custom-select-dropdown button:hover {
    padding-left: 23px;

    background:
        rgba(184,115,73,.07);

    color: #fff;
}


/* COPPER LINE */

.custom-select-dropdown button::after {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 0;
    height: 1px;

    background: #b87349;

    transition: width .25s ease;
}


.custom-select-dropdown button:hover::after {
    width: 10px;
}


/* SELECTED */

.custom-select.has-value
.custom-select-trigger span {
    color: #c47a4c;
}


/* MOBILE */

@media (max-width: 700px) {

    .custom-select-dropdown {
        left: 0;
        right: 0;
    }

    .custom-select-dropdown button {
        min-height: 43px;
    }

}
/* ==========================================================
   MOBILE HEADER FINAL
========================================================== */

@media (max-width: 800px) {

    .site-header .header-inner {
        position: relative;

        min-height: 74px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* LOGO */

    .site-header .brand {
        position: relative;
        z-index: 1002;

        flex: 0 0 auto;
    }

    .site-header .brand-line,
    .site-header .brand-description {
        display: none;
    }


    /* CONTACT — PHONE IN CENTER */

    .site-header .header-contact {
        position: absolute;

        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%);

        display: block;

        width: auto;
        margin: 0;

        z-index: 1002;
    }

    .site-header .header-schedule,
    .site-header .header-divider,
    .site-header .callback-link {
        display: none;
    }

    .site-header .header-phone {
        display: block;
        margin: 0;
    }

    .site-header .header-phone > a {
        display: block;

        white-space: nowrap;

        color: #fff;

        font-size: 14px;
        font-weight: 700;
        line-height: 1;

        text-decoration: none;
    }


    /* BURGER */

    .site-header .mobile-menu-button {
        position: relative;
        z-index: 1003;

        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 7px;

        width: 42px;
        height: 42px;

        margin-left: auto;
        padding: 6px;

        border: 0;
        background: transparent;

        cursor: pointer;
    }

    .site-header .mobile-menu-button span {
        display: block;

        width: 28px;
        height: 1px;

        margin-left: auto;

        background: #fff;

        transition:
            transform .3s ease,
            width .3s ease;
    }


    /* MOBILE NAV */

    .site-header .main-nav {
        position: fixed;

        inset: 0;

        z-index: 1000;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        gap: 0;

        padding: 100px 32px 40px;

        background: #090d0e;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }


    .site-header.menu-open .main-nav {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    .site-header .main-nav a {
        width: 100%;

        padding: 17px 0;

        border-bottom:
            1px solid rgba(255,255,255,.09);

        color: #fff;

        font-size: 24px;
        font-weight: 600;
        line-height: 1.1;

        text-decoration: none;
    }


    /* BURGER -> X */

    .site-header.menu-open
    .mobile-menu-button span:first-child {
        transform:
            translateY(4px)
            rotate(45deg);
    }

    .site-header.menu-open
    .mobile-menu-button span:last-child {
        transform:
            translateY(-4px)
            rotate(-45deg);
    }

}


/* дуже вузькі телефони */

@media (max-width: 420px) {

    .site-header .header-phone > a {
        font-size: 12px;
    }

}
body.mobile-menu-open {
    overflow: hidden;
}
/* ==========================================================
   MOBILE BURGER VISIBILITY FIX
========================================================== */

@media (max-width: 800px) {

    .site-header .mobile-menu-button {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        flex-direction: column;
        align-items: flex-end;
        justify-content: center;

        gap: 7px;

        width: 46px;
        height: 46px;

        padding: 8px 4px;

        background: transparent !important;
    }


    .site-header .mobile-menu-button span {
        position: static !important;

        display: block !important;

        width: 28px !important;
        height: 2px !important;

        margin: 0 !important;

        background: #fff !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform-origin: center;
    }


    /* друга лінія трохи коротша — виглядає цікавіше */

    .site-header .mobile-menu-button span:last-child {
        width: 20px !important;
    }


    /* OPEN -> X */

    .site-header.menu-open
    .mobile-menu-button span:first-child {
        width: 28px !important;

        transform:
            translateY(4.5px)
            rotate(45deg);
    }


    .site-header.menu-open
    .mobile-menu-button span:last-child {
        width: 28px !important;

        transform:
            translateY(-4.5px)
            rotate(-45deg);
    }

}
/* ==========================================================
   MOBILE MENU — FINAL FIX
========================================================== */

@media (max-width: 800px) {

    .site-header .main-nav {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100dvh !important;

        margin: 0 !important;
        padding: 110px 34px 40px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;

        gap: 0 !important;

        background: #090d0e !important;

        overflow-y: auto;

        z-index: 1000 !important;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: none !important;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }


    .site-header.menu-open .main-nav {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }


    .site-header .main-nav a {
        position: relative;

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 18px 0 !important;

        color: #fff !important;

        font-size: 25px !important;
        font-weight: 600 !important;
        line-height: 1.15 !important;

        border-bottom:
            1px solid rgba(255,255,255,.10) !important;

        text-decoration: none;
    }


    .site-header .main-nav a.active {
        color: #c98255 !important;
    }


    /* header elements remain above menu */

    .site-header .brand,
    .site-header .header-contact,
    .site-header .mobile-menu-button {
        position: relative;
        z-index: 1002;
    }


    /* PHONE */

    .site-header .header-contact {
        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;
    }


    /* BURGER */

    .site-header .mobile-menu-button {
        margin-left: auto;
    }


    body.mobile-menu-open {
        overflow: hidden;
    }

}
@media (max-width: 800px) {

    .site-header .header-contact {
        display: none !important;
    }

}
/* ==========================================================
   ESTIMATE SUCCESS
========================================================== */

.estimate-form.is-success {
    display: flex;
    align-items: stretch;
}


.estimate-success {
    width: 100%;
    min-height: 100%;
    padding: 58px 0 20px;

    display: flex;
    flex-direction: column;

    position: relative;
}


.estimate-success-number {
    position: absolute;

    top: 67px;
    left: 0;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;

    color: #c77c4e;
}


.estimate-success-label {
    margin-left: 72px;
    margin-bottom: 34px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .22em;

    color: #c77c4e;
}


.estimate-success h3 {
    margin: 0 0 30px 72px;

    font-size: clamp(54px, 5vw, 86px);
    line-height: .9;

    font-weight: 700;

    letter-spacing: -.055em;

    color: #f5f3ef;
}


.estimate-success h3 span {
    color: #c77c4e;
}


.estimate-success p {
    max-width: 480px;

    margin: 0 0 48px 72px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .48);
}


.estimate-success-status {
    margin-left: 72px;

    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;

    color: rgba(255, 255, 255, .42);
}


.estimate-success-line {
    width: 35px;
    height: 1px;

    background: #c77c4e;
}


.estimate-success-close {
    width: calc(100% - 72px);

    min-height: 88px;

    margin-top: auto;
    margin-left: 72px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(199, 124, 78, .8);

    background: transparent;

    color: #fff;

    font: inherit;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}


.estimate-success-close span {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: .05em;
}


.estimate-success-close i {
    font-size: 24px;
    font-style: normal;

    color: #c77c4e;
}


.estimate-success-close:hover {
    background: #c77c4e;
}


.estimate-success-close:hover i {
    color: #fff;
}


/* MOBILE */

@media (max-width: 700px) {

    .estimate-success {
        padding-top: 40px;
    }


    .estimate-success-number {
        top: 45px;
    }


    .estimate-success-label {
        margin-left: 45px;
        margin-bottom: 30px;
    }


    .estimate-success h3 {
        margin-left: 45px;

        font-size: clamp(48px, 14vw, 68px);
    }


    .estimate-success p {
        margin-left: 45px;
        margin-right: 20px;
    }


    .estimate-success-status {
        margin-left: 45px;
    }


    .estimate-success-close {
        width: calc(100% - 45px);

        margin-left: 45px;
        margin-top: 50px;
    }

}
/* ==========================================================
   ESTIMATE SUCCESS — HIDE INTRO
========================================================== */

.estimate-modal-intro.is-hidden-success {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.estimate-modal-intro {
    transition:
        opacity .3s ease,
        visibility .3s ease;
}