@keyframes heroPawFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: .12
    }

    50% {
        transform: translateY(-18px) rotate(12deg);
        opacity: .25
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: .12
    }
}

@keyframes heroContentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 12s ease
}

.hero:hover .hero__bg {
    transform: scale(1.04)
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(61, 44, 44, .7) 0%, rgba(201, 139, 139, .35) 50%, rgba(232, 196, 160, .2) 100%)
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    width: 100%;
    animation: heroContentSlideUp 1s ease-out
}

.hero__content {
    max-width: 700px
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 6.4rem;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 28px;
    font-weight: 700;
    letter-spacing: -.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .12)
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 48px;
    max-width: 560px;
    font-weight: 400
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .95);
    color: var(--heading-color);
    padding: 20px 48px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    letter-spacing: .02em
}

.hero__btn i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform .3s ease
}

.hero__btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .14);
    background: #fff
}

.hero__btn:hover i {
    transform: translateX(4px)
}

.hero__btn-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform .3s ease
}

.hero__btn:hover .hero__btn-arrow {
    transform: translateX(5px)
}

.hero__paw {
    position: absolute;
    z-index: 2;
    font-size: 2.8rem;
    opacity: .12;
    animation: heroPawFloat 6s infinite ease-in-out;
    color: rgba(255, 255, 255, .4)
}

.hero__paw--1 {
    bottom: 80px;
    right: 100px;
    animation-delay: 0s
}

.hero__paw--2 {
    top: 100px;
    right: 250px;
    animation-delay: -2.5s;
    font-size: 2rem
}

@media(max-width:768px) {
    .hero {
        min-height: 80vh
    }

    .hero__container {
        padding: 60px 24px
    }

    .hero__title {
        font-size: 4rem
    }

    .hero__subtitle {
        font-size: 1.6rem
    }
}