/* Explain: Layout utilities for sections, including padding and background effects. */
.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.98) 0%, rgba(250, 249, 246, 0.85) 52%, rgba(212, 175, 55, 0.08) 100%);
}

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

.orb-sage {
    width: 30rem;
    height: 30rem;
    right: -5%;
    top: 5%;
    background: rgba(212, 175, 55, 0.08);
}

.orb-terracotta {
    width: 24rem;
    height: 24rem;
    left: -5%;
    bottom: 5%;
    background: rgba(88, 129, 87, 0.08);
}

.contact-section {
    background:
        radial-gradient(circle at 8% 16%, rgba(163, 177, 138, 0.2), transparent 24rem),
        linear-gradient(180deg, var(--background-color), var(--surface-color));
}
