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

.hero-split {
    background:
        linear-gradient(120deg,
            rgba(255, 182, 193, 0.25) 0%,
            rgba(255, 218, 185, 0.25) 16%,
            rgba(255, 255, 224, 0.25) 33%,
            rgba(152, 251, 152, 0.25) 50%,
            rgba(173, 216, 230, 0.25) 66%,
            rgba(221, 160, 221, 0.25) 83%,
            rgba(255, 192, 203, 0.25) 100%
        ),
        var(--background-color);
}

.hero-split::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://files.cdn-files-a.com/uploads/12352922/normal_gi-6a95fb86797bb.jpg?format=avif');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -2;
    pointer-events: none;
}

.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(74, 107, 83, 0.15);
}

.orb-terracotta {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(212, 140, 152, 0.15);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 16%, rgba(74, 107, 83, 0.15), transparent 24rem),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}
