/* =====================================
   Hero
===================================== */

.hero {
    position: relative;
    padding: 20px 0 100px;
}

.hero-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

/* =====================================
   USP Cards
===================================== */

.hero__usp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 40px;

    margin-bottom: 60px;
}

.hero__usp-item {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: 100%;
    max-width: 400px;
    min-height: 200px;

    margin: auto;
    padding: 16px 18px;

    border: 1px solid rgba(212, 192, 138, .22);
    border-radius: 18px;

    background: rgba(0, 0, 0, .05);
    backdrop-filter: blur(1.5px);

    text-align: center;

    transition: .35s ease;
}

.hero__usp-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 192, 138, .85),
        transparent
    );

    opacity: .65;
}

.hero__usp-item:hover {
    border-color: #D4C08A;
    background: rgba(0, 0, 0, .12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    transform: translateY(-5px);
}

.hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border: 1px solid rgba(212, 192, 138, .35);
    border-radius: 50%;

    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(3px);

    transition: .35s ease;
}

.hero__icon i {
    color: #E8E4DA;
    font-size: 24px;
}

.hero__usp-item:hover .hero__icon {
    border-color: #D4C08A;
    box-shadow: 0 0 25px rgba(212, 192, 138, .35);
    transform: scale(1.08);
}

.hero__usp h3 {
    margin-bottom: 18px;

    color: #E8E4DA;

    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero__usp p {
    color: #F1F1F1;

    font-size: 15px;
    line-height: 1.8;
}

/* =====================================
   About
===================================== */

.hero__headline {
    margin-bottom: 45px;

    color: #E8E4DA;

    font-size: 48px;
    text-align: center;
}

.hero__content {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: end;
    gap: 70px;
}

.hero__image {
    text-align: center;
}

.hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

.hero__text {
    padding: 35px;
}

/* =====================================
   About – Desktop
===================================== */

@media (min-width: 1025px) {
    .hero__about {
        position: relative;
        isolation: isolate;

        margin-inline: 20px;
        padding: 48px 60px 60px;

        overflow: hidden;

        border: 1px solid rgba(212, 192, 138, .2);
        border-radius: 28px;

        background: rgba(0, 0, 0, .05);

        box-shadow:
            0 24px 70px rgba(0, 0, 0, .38),
            inset 0 1px 0 rgba(255, 255, 255, .03);

        backdrop-filter: blur(1.5px);
    }

    .hero__about::before {
        content: "";

        display: none;

        position: absolute;
        z-index: -1;
        top: -180px;
        left: 8%;

        width: 520px;
        height: 520px;

        border-radius: 50%;

        background: rgba(112, 132, 46, .12);
        filter: blur(90px);
    }

    .hero__headline {
        position: relative;

        margin-bottom: 56px;
        padding-bottom: 22px;

        font-size: clamp(34px, 2.6vw, 44px);
        line-height: 1.1;
        text-shadow: 0 3px 18px rgba(0, 0, 0, .7);
    }

    .hero__headline::after {
        content: "";

        position: absolute;
        bottom: 0;
        left: 50%;

        width: 150px;
        height: 2px;

        background: linear-gradient(
            90deg,
            transparent,
            #D4C08A,
            transparent
        );

        transform: translateX(-50%);
    }

    .hero__content {
        position: relative;

        grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
        align-items: center;
        gap: clamp(50px, 6vw, 90px);

        max-width: 1180px;
        margin: 0 auto;
    }

    .hero__image {
        position: relative;

        overflow: hidden;

        border: 1px solid rgba(212, 192, 138, .42);
        border-radius: 24px;

        background: #050605;

        box-shadow:
            0 22px 55px rgba(0, 0, 0, .48),
            0 0 35px rgba(112, 132, 46, .1);
    }

    .hero__image::after {
        content: "";

        position: absolute;
        inset: 0;

        border-radius: inherit;

        box-shadow: inset 0 0 45px rgba(0, 0, 0, .24);

        pointer-events: none;
    }

    .hero__image img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .hero__text {
        position: relative;

        padding: 42px 48px;

        border: 1px solid rgba(212, 192, 138, .18);
        border-left: 3px solid rgba(212, 192, 138, .72);
        border-radius: 0 22px 22px 0;

        background: rgba(0, 0, 0, .28);

        box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
        backdrop-filter: blur(2.5px);
    }

    .hero__text h3 {
        margin-bottom: 18px;

        color: #E8E4DA;

        font-size: clamp(22px, 1.8vw, 28px);
        line-height: 1.15;
    }

    .hero__text p {
        max-width: 620px;

        color: #F1F1F1;

        font-size: 16px;
        line-height: 1.65;
    }

    .hero__text p + p {
        margin-top: 16px;
    }
}

