.hp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    animation: hp-hero-zoom 25s ease-in-out infinite alternate;
}

@keyframes hp-hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.hp-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

@keyframes hp-fade-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hp-hero__badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0f0f0f;
    background: linear-gradient(135deg, #c9a84c, #e8d48b, #c9a84c);
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 28px;
    opacity: 0;
    animation: hp-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hp-hero__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px;
    opacity: 0;
    animation: hp-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hp-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(60px, 14vw, 160px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0 0 24px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: hp-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hp-hero__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: hp-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hp-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: hp-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hp-hero__cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.hp-hero__cta--primary {
    background: linear-gradient(135deg, #c9a84c, #e8d48b);
    color: #0f0f0f;
    border: none;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.hp-hero__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 44px rgba(201, 168, 76, 0.5);
}

.hp-hero__cta--outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.hp-hero__cta--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hp-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0;
    animation: hp-fade-up 0.8s ease-out 1.5s forwards;
}

.hp-hero__scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    animation: hp-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hp-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

@media (max-width: 768px) {
    .hp-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hp-hero__bg img {
        object-position: 60% center;
    }

    .hp-hero__badge {
        font-size: 9px;
        padding: 6px 18px;
        margin-bottom: 20px;
    }

    .hp-hero__sub {
        font-size: 10px;
        letter-spacing: 0.3em;
    }

    .hp-hero__desc {
        font-size: 13px;
        padding: 0 10px;
    }

    .hp-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hp-hero__cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 32px;
    }

    .hp-hero__scroll {
        bottom: 20px;
    }
}
