/* Explain: Styles for page layout and decorative animated background elements. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background:
        linear-gradient(115deg, rgba(250, 249, 246, 0.96) 0%, rgba(250, 249, 246, 0.78) 52%, rgba(88, 129, 87, 0.12) 100%);
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.52;
    pointer-events: none;
    z-index: -1;
}

.orb-sage {
    width: 24rem;
    height: 24rem;
    right: 8%;
    top: 10%;
    background: rgba(160, 132, 220, 0.2);
}

.orb-terracotta {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(252, 163, 181, 0.25);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 16%, rgba(174, 230, 250, 0.3), transparent 24rem),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}

@keyframes float-up {
    0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { transform: translateY(-120vh) rotate(360deg) scale(1.2); opacity: 0; }
}

.bg-floater {
    position: absolute;
    bottom: -10%;
    animation: float-up linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    font-family: var(--font-heading);
}
