/* Explain: Layout utilities for section padding and background gradients. - */
.section-pad {
    padding-top: clamp(5.5rem, 10vw, 9rem);
    padding-bottom: clamp(5.5rem, 10vw, 9rem);
}

.hero-split {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 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(10, 37, 64, 0.05);
}

.orb-terracotta {
    width: 25rem;
    height: 25rem;
    left: -5%;
    bottom: -5%;
    background: rgba(217, 72, 15, 0.05);
}

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