/* ==========================================================================
   Why Meadan — Hero
   Desktop: 1440×400, full-bleed bg image, dark overlay, nav overlaid
   Content: 626×292 — padding 122px top, 407px each side
   Title: 626×48, Freight Neo Book 48px, white, centred
   Mobile:  390×312, 16px padding, 358px wide, 40px title, vertically centred
   ========================================================================== */

.wm-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.wm-hero__inner {
    position: relative;
    z-index: 2;
}

.wm-hero__heading {
    font-family: 'Freight Neo', 'freight-neo-pro', Georgia, serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin: 0;
}

/* ── Tablet ── */
@media (max-width: 1200px) {
    .wm-hero {
        padding: 80px 60px 0;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .wm-hero {
        height: 312px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wm-hero__inner {
        width: 100%;
        max-width: 358px;
    }

    .wm-hero__heading {
        font-size: 40px;
    }
}
