/* Explain: Layout utilities for construction company sections. - */
.section-pad {
    padding-top: clamp(6rem, 12vw, 10rem);
    padding-bottom: clamp(6rem, 12vw, 10rem);
}

.hero-split {
    background: var(--surface-color);
}

.orb {
    position: absolute;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.orb-sage {
    width: 40vw;
    height: 40vw;
    right: -10%;
    top: -10%;
    background: var(--accent-color);
}

.orb-terracotta {
    width: 30vw;
    height: 30vw;
    left: -5%;
    bottom: -5%;
    background: var(--primary-color);
}

.contact-section {
    background: var(--surface-color);
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}