/* Mobile hero flow: keep actions and project details in normal document flow. */
@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding: 68px 0 30px;
    }

    .hero-content {
        padding-top: 72px;
    }

    .hero h1 {
        font-size: clamp(44px, 13.4vw, 50px);
        line-height: .96;
    }

    .hero-actions {
        gap: 14px;
    }

    .hero-bottom {
        position: static;
        margin-top: 42px;
        padding-top: 18px;
    }

    .hero-bottom p {
        line-height: 1.6;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-content {
        padding-top: 58px;
    }

    .hero-copy {
        line-height: 1.55;
    }

    .hero-bottom {
        margin-top: 32px;
    }
}
