/* Landing Page CSS Entry Point */
@import 'modules/variables.css';
@import 'modules/base.css';
@import 'modules/components.css';
@import 'modules/header.css';
@import 'modules/footer.css';
@import 'modules/home.css';

/* Shared responsive helpers for public pages */
.page-hero {
    height: 50vh !important;
    min-height: 400px !important;
}

.page-hero--tall {
    height: 60vh !important;
}

.page-hero__title {
    font-size: clamp(2.15rem, 8vw, 3.5rem) !important;
}

.page-hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
}

.page-form-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page-form-stack__field {
    flex: 1 1 18rem;
    min-width: 0;
    position: relative;
}

.page-form-stack__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-inline-pair {
    display: flex;
    gap: 1rem;
}

.page-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.page-map-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--jp-shadow);
    height: 400px;
}

@media (max-width: 767px) {
    .page-hero {
        height: auto !important;
        min-height: 320px !important;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .page-form-stack {
        flex-direction: column;
        align-items: stretch;
    }

    .page-form-stack__field,
    .page-form-stack__actions,
    .page-form-stack__actions > * {
        width: 100%;
    }

    .page-inline-pair,
    .page-process-step {
        flex-direction: column;
        gap: 0.875rem;
    }

    .page-map-frame {
        height: 280px;
    }

    .services-section,
    .faq-section,
    .contact-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
