.hero-logo-frame {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 40px;

    background: rgb(7, 7, 7);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 22px;

    border: none;

box-shadow:
    0 20px 45px rgba(0,0,0,.12);

    animation: floatLogo 5s ease-in-out infinite;
}

.hero-logo {
    width: 88%;
    height: 88%;
    object-fit: contain;
}


@keyframes floatLogo {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* -------------------------- */
/* Natural Sakura Petals      */
/* -------------------------- */

.hero {
    position: relative;
    overflow: hidden;
}

.sakura-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.petal {
    position: absolute;
    top: -10%;
    width: 16px;
    height: 14px;
    background: #f57aa3;
    border-radius: 70% 0 70% 0;
    opacity: 0.45;
    animation-name: petalFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.petal:nth-child(1) {
    left: 6%;
    width: 12px;
    height: 10px;
    opacity: 0.35;
    animation-duration: 18s;
    animation-delay: -4s;
}

.petal:nth-child(2) {
    left: 16%;
    width: 18px;
    height: 15px;
    opacity: 0.42;
    animation-duration: 22s;
    animation-delay: -9s;
}

.petal:nth-child(3) {
    left: 26%;
    width: 10px;
    height: 9px;
    opacity: 0.28;
    animation-duration: 20s;
    animation-delay: -2s;
}

.petal:nth-child(4) {
    left: 38%;
    width: 20px;
    height: 17px;
    opacity: 0.5;
    animation-duration: 24s;
    animation-delay: -12s;
}

.petal:nth-child(5) {
    left: 49%;
    width: 14px;
    height: 12px;
    opacity: 0.38;
    animation-duration: 19s;
    animation-delay: -6s;
}

.petal:nth-child(6) {
    left: 61%;
    width: 22px;
    height: 18px;
    opacity: 0.46;
    animation-duration: 25s;
    animation-delay: -15s;
}

.petal:nth-child(7) {
    left: 73%;
    width: 13px;
    height: 11px;
    opacity: 0.32;
    animation-duration: 21s;
    animation-delay: -7s;
}

.petal:nth-child(8) {
    left: 83%;
    width: 19px;
    height: 16px;
    opacity: 0.44;
    animation-duration: 23s;
    animation-delay: -11s;
}

.petal:nth-child(9) {
    left: 91%;
    width: 11px;
    height: 10px;
    opacity: 0.3;
    animation-duration: 17s;
    animation-delay: -5s;
}

.petal:nth-child(10) {
    left: 97%;
    width: 17px;
    height: 14px;
    opacity: 0.4;
    animation-duration: 26s;
    animation-delay: -18s;
}

@keyframes petalFloat {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
    }

    20% {
        transform: translateY(20vh) translateX(35px) rotate(80deg);
    }

    40% {
        transform: translateY(42vh) translateX(-25px) rotate(160deg);
    }

    60% {
        transform: translateY(65vh) translateX(45px) rotate(230deg);
    }

    80% {
        transform: translateY(90vh) translateX(-35px) rotate(310deg);
    }

    100% {
        transform: translateY(115vh) translateX(20px) rotate(390deg);
    }
}

.contact-home {
    padding: 110px 60px;
    text-align: center;
    background: var(--bg-soft);
}

.contact-home h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
    font-size: 52px;
    margin-bottom: 45px;
}

.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 18px 45px rgba(225, 110, 150, 0.08);
}

.contact-card h3 {
    color: var(--accent);
    margin-bottom: 14px;
}

.contact-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.contact-card a {
    color: white;
    background: var(--accent);
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 850px) {
    .contact-home {
        padding: 85px 24px;
    }

    .contact-home h2 {
        font-size: 38px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}