/* Explain: Layout utilities for airy event services sections with gradient backgrounds. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, rgba(212, 175, 55, 0.05) 100%);
}

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

.orb-sage {
    width: 30rem;
    height: 30rem;
    right: 0;
    top: 5%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.orb-terracotta {
    width: 25rem;
    height: 25rem;
    left: -5%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.25) 0%, transparent 70%);
}

.contact-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08), transparent 500px),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}