
:root{
    --mch-bg:#ffffff;
    --mch-text:#111111;
    --mch-muted:#666;
    --mch-border:#eaeaea;
    --mch-radius:18px;
}

*{box-sizing:border-box}

.mch-home{
    background:var(--mch-bg);
    color:var(--mch-text);
    font-family:inherit;
}

.mch-hero{
    min-height:78vh;
    position:relative;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#111;
}

.mch-hero__media,
.mch-hero__video,
.mch-hero__overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.mch-hero__video{
    object-fit:cover;
}

.mch-hero__overlay{
    background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.72));
}

.mch-hero__content{
    position:relative;
    z-index:2;
    width:min(1240px,calc(100% - 40px));
    margin:0 auto;
    padding:80px 0 64px;
    color:#fff;
}

.mch-kicker,
.mch-eyebrow{
    font-size:12px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.mch-hero h1{
    margin:8px 0;
    font-size:clamp(48px,8vw,108px);
    line-height:.9;
    letter-spacing:-.05em;
}

.mch-subtitle{
    max-width:650px;
    font-size:clamp(18px,2.2vw,28px);
    margin:18px 0 28px;
}

.mch-hero__actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.mch-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    transition:.2s ease;
}

.mch-btn:hover{transform:translateY(-1px)}
.mch-btn--primary{background:#fff;color:#111}
.mch-btn--ghost{border:1px solid rgba(255,255,255,.6);color:#fff;background:rgba(255,255,255,.08)}
.mch-btn--dark{background:#111;color:#fff}

.mch-trustline{
    margin-top:18px;
    font-size:13px;
    opacity:.85;
}

.mch-section{
    width:min(1240px,calc(100% - 40px));
    margin:0 auto;
    padding:72px 0;
}

.mch-section__head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}

.mch-section h2,
.mch-promo h2,
.mch-copy-block h2{
    margin:4px 0 0;
    font-size:clamp(34px,5vw,62px);
    letter-spacing:-.04em;
    line-height:1;
}

.mch-link{
    color:#111;
    font-weight:700;
}

.mch-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.mch-card{
    border:1px solid var(--mch-border);
    border-radius:var(--mch-radius);
    overflow:hidden;
    background:#fff;
}

.mch-card__image{
    display:block;
    position:relative;
    aspect-ratio:4/5;
    background:#f4f4f4;
    overflow:hidden;
}

.mch-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.mch-card:hover img{transform:scale(1.03)}

.mch-badge{
    position:absolute;
    z-index:2;
    top:12px;
    left:12px;
    background:#111;
    color:#fff;
    font-size:12px;
    font-weight:800;
    border-radius:999px;
    padding:8px 10px;
}

.mch-card__body{padding:16px}
.mch-card h3{font-size:16px;margin:0 0 8px}
.mch-card h3 a{color:#111;text-decoration:none}
.mch-price{font-size:18px;font-weight:800;margin-bottom:14px}
.mch-card__cta{display:block;text-align:center;background:#111;color:#fff;text-decoration:none;padding:12px;border-radius:999px;font-size:13px;font-weight:800}

.mch-promo{
    width:min(1240px,calc(100% - 40px));
    margin:0 auto 30px;
    padding:46px;
    border-radius:28px;
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.mch-section--split{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:34px;
    align-items:center;
}

.mch-video-block{
    border-radius:28px;
    overflow:hidden;
    background:#111;
    aspect-ratio:4/5;
}

.mch-video-block video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mch-copy-block p{
    color:var(--mch-muted);
    max-width:540px;
    font-size:18px;
    line-height:1.6;
}

.mch-mobile-bar{display:none}

@media (max-width: 900px){
    .mch-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .mch-section--split{grid-template-columns:1fr}
    .mch-promo{align-items:flex-start;flex-direction:column}
}

@media (max-width: 640px){
    .mch-hero{min-height:72vh}
    .mch-hero__content{width:calc(100% - 28px);padding:60px 0 44px}
    .mch-section{width:calc(100% - 28px);padding:52px 0}
    .mch-grid{gap:10px}
    .mch-card__body{padding:12px}
    .mch-card h3{font-size:14px}
    .mch-price{font-size:16px}
    .mch-promo{width:calc(100% - 28px);padding:28px;border-radius:22px}
    .mch-mobile-bar{
        position:fixed;
        z-index:9999;
        left:12px;
        right:12px;
        bottom:12px;
        height:56px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 16px;
        background:#111;
        color:#fff;
        border-radius:999px;
        box-shadow:0 10px 30px rgba(0,0,0,.22);
    }
    .mch-mobile-bar a{
        color:#111;
        background:#fff;
        border-radius:999px;
        padding:10px 14px;
        text-decoration:none;
        font-weight:800;
        font-size:12px;
    }
}
