/* Explain: Layout utilities for airy organic site sections */
.section-pad {
    padding-top: clamp(6rem, 12vw, 10rem);
    padding-bottom: clamp(6rem, 12vw, 10rem);
}

.hero-split {
    background: linear-gradient(180deg, var(--surface-color) 0%, var(--background-color) 100%);
}

.orb {
    position: absolute;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

.orb-sage {
    width: 35vw;
    height: 35vw;
    right: -10%;
    top: 5%;
    background: var(--sage-soft);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: float 20s ease-in-out infinite alternate;
}

.orb-terracotta {
    width: 28vw;
    height: 28vw;
    left: -5%;
    bottom: 5%;
    background: var(--terracotta-soft);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 25s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 50px) rotate(15deg); }
}

.contact-section {
    background: linear-gradient(180deg, var(--background-color), var(--surface-color));
}
