/* Explain: Layout utilities for airy one-page studio sections. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background: var(--background-color);
}

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

.orb-primary {
    width: 30rem;
    height: 30rem;
    right: 5%;
    top: 5%;
    background: radial-gradient(circle, rgba(184, 150, 101, 0.08) 0%, transparent 70%);
}

.orb-secondary {
    width: 24rem;
    height: 24rem;
    left: -5%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(30, 41, 59, 0.04) 0%, transparent 70%);
}

.contact-section {
    background: var(--secondary-color);
}