.mnm-retail-section {
    --mnm-black: #161616;
    --mnm-dark: #222222;
    --mnm-gold: #b08d57;
    --mnm-light-gold: #d4b483;
    --mnm-cream: #f8f5f0;
    --mnm-border: rgba(176, 141, 87, 0.25);
    padding: 45px 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--mnm-cream) 100%);
    color: var(--mnm-black);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.mnm-retail-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mnm-retail-header {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.mnm-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--mnm-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mnm-retail-header h2, .mnm-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.mnm-retail-header h2 {
    font-size: clamp(38px, 5vw, 62px);
}

.mnm-retail-header h2 span {
    color: var(--mnm-gold);
}

.mnm-intro {
    max-width: 700px;
    margin: 28px auto 0;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.mnm-offerings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mnm-offering {
    display: flex;
    gap: 22px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--mnm-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mnm-offering:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 141, 87, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.mnm-offering:last-child {
    grid-column: 1 / -1;
}

.mnm-number {
    flex: 0 0 auto;
    color: var(--mnm-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1;
    padding-top: 4px;
}

.mnm-offering h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.mnm-offering p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.mnm-cta {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 70px 40px;
    text-align: center;
    background: var(--mnm-black);
    color: white;
}

.mnm-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -180px;
    right: -120px;
    border: 1px solid rgba(176, 141, 87, 0.35);
    border-radius: 50%;
}

.mnm-cta h2 {
    position: relative;
    font-size: clamp(38px, 5vw, 56px);
    color: var(--mnm-cream);
}

.mnm-cta > p {
    position: relative;
    max-width: 650px;
    margin: 22px auto 0;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
}

.mnm-contact-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.mnm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.mnm-button-primary {
    background: var(--mnm-gold);
    color: white;
}

.mnm-button-primary:hover {
    background: var(--mnm-light-gold);
}

.mnm-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.mnm-button-secondary:hover {
    border-color: var(--mnm-gold);
    color: var(--mnm-light-gold);
}

.mnm-contact {
    position: relative;
    margin-top: 26px !important;
    font-size: 14px !important;
    color: #aaa !important;
}

.mnm-contact a {
    color: var(--mnm-light-gold);
    text-decoration: none;
}

.mnm-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .mnm-retail-section {
        padding: 60px 18px;
    }

    .mnm-retail-header {
        margin-bottom: 45px;
    }

    .mnm-offerings {
        grid-template-columns: 1fr;
    }

    .mnm-offering:last-child {
        grid-column: auto;
    }

    .mnm-offering {
        padding: 26px;
    }

    .mnm-cta {
        padding: 55px 25px;
        margin-top: 55px;
    }

    .mnm-contact-buttons {
        flex-direction: column;
    }

    .mnm-button {
        width: 100%;
    }
}