/* Ascunde titlul de pagină/breadcrumbs pe Acasă (banda albă) */
body.home .ct-page-title,
body.home .page-title,
body.home .entry-header,
body.home .ct-breadcrumbs { display: none !important; }

/* HERO full-screen */
.mmx-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: var(--mmx-hero);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    isolation: isolate;
}
.mmx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55));
    z-index: 0;
}
.mmx-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.mmx-eyebrow {
    letter-spacing: .35em;
    font-size: .85rem;
    color: #d8c3a2;
    margin: 0 0 .75rem;
}
.mmx-title {
    font-size: clamp(32px, 7vw, 64px);
    line-height: 1.1;
    color: #f5efe6;
    font-weight: 800;
    margin: 0 0 1rem;
}
.mmx-sub {
    color: #eae2d4;
    max-width: 720px;
}
.mmx-cta { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.mmx-btn { padding: .9rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 700; display: inline-block; }
.mmx-btn--gold {
    background: linear-gradient(135deg, #d8b26a, #a07a2f);
    color:#1a1a1a;
}
.mmx-btn--ghost {
    border: 2px solid #d8b26a;
    color: #f5efe6;
}
.mmx-badges { display:flex; gap:1.25rem; list-style:none; padding:0; margin-top:1.25rem; color:#e8dcc7; font-size:.95rem; flex-wrap:wrap; }
.mmx-badges li::before { content:"★"; margin-right:.45rem; }

@media (max-width: 782px){
    .mmx-hero__inner { padding-top: 6rem; padding-bottom: 6rem; }
}
