/* Explain: Layout utilities for website sections, including padding and background gradients. - */
.section-pad {
    padding-top: clamp(2.75rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.hero-split {
    background:
        linear-gradient(115deg, rgba(253, 251, 248, 0.96) 0%, rgba(253, 251, 248, 0.78) 52%, rgba(184, 144, 91, 0.12) 100%);
}

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

.orb-accent {
    width: 24rem;
    height: 24rem;
    right: 8%;
    top: 10%;
    background: rgba(184, 144, 91, 0.2);
}

.orb-primary {
    width: 18rem;
    height: 18rem;
    left: 4%;
    bottom: 10%;
    background: rgba(92, 67, 38, 0.25);
}

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