:root {
    --nav: #c9a68a;
    --nav-hover: #b48f73;
    --text: #2b2b2b;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

.container {
    width: min(var(--container), calc(100% - 4rem));
    margin: 0 auto;
}

.mb-header {
    background: #fff;
}

.mb-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left nav | logo | right nav */
    align-items: center;
    padding: 2.25rem 0 1.75rem; /* controls the big whitespace */
}

.mb-logo {
    display: flex;
    justify-content: center;
    text-decoration: none;
}

    .mb-logo img {
        height: 96px; /* adjust to match screenshot */
        width: auto;
        display: block;
    }

.mb-nav {
    display: flex;
    align-items: center;
    gap: 3rem; /* spacing between links */
}

.mb-nav--left {
    justify-content: flex-end;
    padding-right: 2.75rem;
}

.mb-nav--right {
    justify-content: flex-start;
    padding-left: 2.75rem;
}

.mb-nav a {
    text-decoration: none;
    color: var(--nav);
    font-size: .72rem; /* small nav text */
    letter-spacing: .22em; /* wide spacing like screenshot */
    text-transform: uppercase;
    font-weight: 500;
}

    .mb-nav a:hover {
        color: var(--nav-hover);
    }

/* Mobile: stack + center */
@media (max-width: 980px) {
    .mb-header__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0 1.25rem;
    }

    .mb-nav {
        justify-content: center;
        padding: 0;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .mb-nav--left, .mb-nav--right {
        padding: 0;
    }

    .mb-logo img {
        height: 72px;
    }
}

/* =========================
   WELCOME SECTION (target screenshot)
   ========================= */

.mb-welcome {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 5.5rem 0 6rem;
}

    /* subtle vertical stripes overlay */
    .mb-welcome::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 90deg, rgba(0,0,0,0.015) 0px, rgba(0,0,0,0.015) 2px, transparent 2px, transparent 48px );
        pointer-events: none;
    }

    /* large quarter-circle on the right */
    .mb-welcome::after {
        content: "";
        position: absolute;
        right: -140px;
        top: -80px;
        width: 900px;
        height: 900px;
        background: rgba(0,0,0,0.06);
        border-radius: 50%;
        pointer-events: none;
    }

/* center column */
.mb-welcome__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
}

/* icon at top */
.mb-welcome__icon {
    width: 26px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    opacity: .75;
}

/* “Welcome to” */
.mb-welcome__kicker {
    color: var(--nav);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    margin-bottom: 1rem;
}

/* big serif title */
.mb-welcome__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: rgba(0,0,0,.75);
}

/* tiny divider line */
.mb-welcome__rule {
    width: 52px;
    height: 1px;
    background: rgba(201,166,138,.7);
    margin: 1.25rem auto 1.75rem;
}

/* paragraph */
.mb-welcome__text {
    margin: 0 auto;
    max-width: 62ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .92rem;
    line-height: 1.9;
    color: rgba(0,0,0,.55);
}

/* responsive: reduce circle so it doesn't overpower on small screens */
@media (max-width: 900px) {
    .mb-welcome {
        padding: 4rem 0 4.5rem;
    }

        .mb-welcome::after {
            right: -220px;
            top: -140px;
            width: 720px;
            height: 720px;
        }
}

/* =========================
   OWNER / STYLIST SECTION
   ========================= */

.mb-owner {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 5.5rem 0 6rem;
}

    /* same subtle vertical stripes */
    .mb-owner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 90deg, rgba(0,0,0,0.015) 0px, rgba(0,0,0,0.015) 2px, transparent 2px, transparent 48px );
        pointer-events: none;
    }

    /* same quarter-circle on the right */
    .mb-owner::after {
        content: "";
        position: absolute;
        right: -160px;
        top: -40px;
        width: 950px;
        height: 950px;
        background: rgba(0,0,0,0.06);
        border-radius: 50%;
        pointer-events: none;
    }

.mb-owner__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(320px, 520px);
    gap: 4.5rem;
    align-items: center;
    justify-content: center;
}

/* left text block */
.mb-owner__text {
    text-align: center;
}

.mb-owner__kicker {
    color: var(--nav);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    margin-bottom: .55rem;
}

.mb-owner__name {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
    color: rgba(0,0,0,.75);
}

.mb-owner__rule {
    width: 52px;
    height: 1px;
    background: rgba(201,166,138,.7);
    margin: 1.1rem auto 0;
}

/* right image */
.mb-owner__media {
    display: flex;
    justify-content: center;
}

.mb-owner__img {
    width: min(360px, 100%);
    height: auto;
    display: block;
    background: #f4f1f2; /* pale panel behind photo */
    padding: 18px; /* creates that light “frame” feel */
}

/* responsive */
@media (max-width: 980px) {
    .mb-owner__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mb-owner::after {
        right: -260px;
        top: -140px;
        width: 760px;
        height: 760px;
    }
}

/* =========================
   PRICES SECTION
   ========================= */

/* Background section */
.lux-section {
    padding: 5.5rem 0 6rem;
    background: #ccb09e; /* beige background */
    position: relative;
    overflow: hidden;
}

/* Title */
.lux-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.lux-title__kicker {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin-bottom: .35rem;
}

.lux-title__main {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: .04em;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    color: #ffffff;
}

/* Panels layout */
.lux-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 260px));
    justify-content: center;
    gap: 1.75rem;
}

/* Individual panel */
.lux-panel {
    position: relative;
    background: #d9c1b4; /* lighter blush panel */
    padding: 3.25rem 1.6rem;
    color: rgba(255,255,255,.85);
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    overflow: hidden;
}

    /* Clover / M top */
    .lux-panel::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -60px;
        width: 220px;
        height: 140px;
        transform: translateX(-50%);
        background: radial-gradient(circle at 30% 100%, rgba(255,255,255,.18) 0 60px, transparent 61px), radial-gradient(circle at 70% 100%, rgba(255,255,255,.18) 0 60px, transparent 61px);
        pointer-events: none;
    }

    /* Clover / M bottom */
    .lux-panel::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -60px;
        width: 220px;
        height: 140px;
        transform: translateX(-50%) rotate(180deg);
        background: radial-gradient(circle at 30% 100%, rgba(255,255,255,.18) 0 60px, transparent 61px), radial-gradient(circle at 70% 100%, rgba(255,255,255,.18) 0 60px, transparent 61px);
        pointer-events: none;
    }

/* Price list */
.lux-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .8rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .92rem;
    line-height: 1.6;
}

    .lux-list li {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem;
        align-items: start;
    }

    .lux-list span:last-child {
        font-weight: 600;
        color: #ffffff;
        text-align: right;
        white-space: nowrap;
    }

    .lux-list small {
        font-size: .72rem;
        font-weight: 400;
        opacity: .85;
    }

/* Footer label */
.lux-footer {
    text-align: center;
    margin-top: 3rem;
}

.lux-footer__label {
    font-family: Georgia, "Times New Roman", serif;
    font-size: .9rem;
    color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 920px) {
    .lux-panels {
        grid-template-columns: minmax(260px, 420px);
    }
}

/* =========================
   SHOWCASE SECTION
   ========================= */

/* =========================
   SHOWCASE SECTION (UPDATED)
   ========================= */

/* =========================
   COMPARE (DESKTOP SLIDER)
   ========================= */

.mb-compare {
    position: relative;
    width: 100%;
    max-width: 520px; /* keeps it “normal space” */
    margin: 0 auto;
    overflow: hidden;
    height: 420px;
    background: #fff;
}

.mb-compare__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* after layer clips horizontally */
.mb-compare__after {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

/* range invisible but interactive (desktop) */
.mb-compare__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

/* handle line */
.mb-compare__handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}

    .mb-compare__handle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 22px;
        height: 22px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(0,0,0,.18);
        border-radius: 4px;
        box-shadow: 0 8px 18px rgba(0,0,0,.12);
    }

/* =========================
   MOBILE: BUTTON TOGGLE MODE
   ========================= */

/* Toggle buttons hidden by default (desktop) */
.mb-compare__toggle {
    display: none;
}

/* Mobile height tuning */
@media (max-width: 768px) {
    .mb-compare {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .mb-compare {
        height: 240px;
    }
}

@media (max-width: 768px) {
    /* Disable slider controls on mobile */
    .mb-compare__range,
    .mb-compare__handle {
        display: none !important;
    }

    /* Default mobile state = BEFORE */
    .mb-compare {
        --mobile-after: 0%;
    }

    .mb-compare__after {
        width: var(--mobile-after);
        transition: width 140ms ease;
    }

    /* Show mobile buttons */
    .mb-compare__toggle {
        display: inline-flex;
        gap: .5rem;
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        padding: .35rem;
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(0,0,0,.12);
        box-shadow: 0 10px 24px rgba(0,0,0,.10);
        z-index: 5;
    }

    .mb-compare__btn {
        border: 0;
        background: transparent;
        padding: .5rem .8rem;
        border-radius: 999px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: .85rem;
        color: rgba(0,0,0,.65);
        cursor: pointer;
    }

        .mb-compare__btn.is-active {
            background: rgba(201,166,138,.22);
            color: rgba(0,0,0,.78);
            font-weight: 600;
        }
}


.mb-showcase {
    background: #ececec;
    padding: 4.5rem 0 2.5rem;
}

.mb-showcase__head {
    text-align: center;
    max-width: 820px;
}

.mb-showcase__kicker {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    color: rgba(201,166,138,.85);
    margin-bottom: .35rem;
}

.mb-showcase__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 3.2vw, 3rem);
    color: rgba(0,0,0,.75);
}

.mb-showcase__rule {
    width: 52px;
    height: 1px;
    background: rgba(201,166,138,.7);
    margin: 1.15rem auto 1.2rem;
}

.mb-showcase__sub {
    margin: 0 auto 2.6rem;
    max-width: 70ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .92rem;
    line-height: 1.8;
    color: rgba(0,0,0,.55);
}

/* IMPORTANT:
   On desktop we allow a horizontal strip if you want,
   but we remove the forced min-width and instead size each item. */
.mb-showcase__strip {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 1.25rem;
    -webkit-overflow-scrolling: touch;
}

.mb-showcase__row {
    display: flex;
    gap: 1.25rem;
    width: 100%;
}


    /* Each compare "slide" gets a stable width on desktop strip */
    .mb-showcase__row > .mb-compare {
        flex: 0 0 360px; /* each slider card width (tweak if needed) */
    }

/* Tablet: slightly smaller cards */
@media (max-width: 1024px) {
    .mb-showcase__row > .mb-compare {
        flex-basis: 320px;
    }
}

/* Mobile: stack vertically and remove horizontal scrolling */
@media (max-width: 768px) {
    .mb-showcase__strip {
        overflow: visible;
        padding-bottom: 0;
    }

    .mb-showcase__row {
        flex-direction: column;
        gap: 1.5rem;
    }

        .mb-showcase__row > .mb-compare {
            flex: 1 1 auto;
            width: 100%;
        }
}

/* =========================
   BEFORE/AFTER COMPARE SLIDER (UPDATED)
   ========================= */

.mb-compare {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* This keeps mobile consistent and avoids weird stretching.
       Desktop can be taller if you prefer. */
    height: 420px;
    /* small polish */
    background: #fff;
}

/* Make both images fill the compare box exactly */
.mb-compare__img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* critical: prevents distortion on mobile */
    display: block;
}

/* after layer, clipped by width */
.mb-compare__after {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

/* range sits on top but invisible (we style handle ourselves) */
.mb-compare__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    /* mobile/touch friendliness */
    touch-action: pan-x;
}

/* visible handle */
.mb-compare__handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}

    .mb-compare__handle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 22px;
        height: 22px;
        background: rgba(255,255,255,.95);
        border: 1px solid rgba(0,0,0,.18);
        border-radius: 4px;
        box-shadow: 0 8px 18px rgba(0,0,0,.12);
    }

    .mb-compare__handle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,.35) 0) left, linear-gradient(225deg, transparent 50%, rgba(0,0,0,.35) 0) right;
        background-size: 7px 14px;
        background-repeat: no-repeat;
        opacity: .8;
    }

/* Height tuning for mobile */
@media (max-width: 768px) {
    .mb-compare {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mb-compare {
        height: 240px;
    }
}

/* “More of our work!” */
.mb-showcase__more {
    text-align: center;
    padding: 1.2rem 0 0;
}

.mb-showcase__morelink {
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(0,0,0,.45);
    text-decoration: none;
    font-size: .9rem;
}

    .mb-showcase__morelink:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .mb-compare__handle {
        background: rgba(255,255,255,1);
    }

        .mb-compare__handle::before {
            width: 26px;
            height: 26px;
        }
}




/* STATIC SHOWCASE GRID */

.mb-gallery-grid {
    background: #f3f2f1;
    padding: 3rem 0 4rem;
}

.mb-gallery-grid__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

    .mb-gallery-grid__inner img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        aspect-ratio: 3 / 4;
        border-radius: 2px;
        transition: transform .4s ease, box-shadow .4s ease;
    }

        .mb-gallery-grid__inner img:hover {
            transform: scale(1.02);
            box-shadow: 0 18px 40px rgba(0,0,0,.15);
        }

@media (max-width: 768px) {
    .mb-gallery-grid__inner {
        grid-template-columns: none;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 80%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .75rem;
        gap: 1rem;
    }

        .mb-gallery-grid__inner img {
            scroll-snap-align: start;
            aspect-ratio: 4 / 5;
        }
}





/* OPENING TIMES */

.mb-hours {
    position: relative;
    background: #f3f2f1;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

    /* faint curved/striped backdrop like the reference */
    .mb-hours::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
        /* subtle vertical striping */
        repeating-linear-gradient( 90deg, rgba(255,255,255,.35) 0px, rgba(255,255,255,.35) 70px, rgba(255,255,255,.18) 71px, rgba(255,255,255,.18) 140px );
        opacity: .35;
        pointer-events: none;
    }

    .mb-hours::after {
        content: "";
        position: absolute;
        right: -18%;
        bottom: -55%;
        width: 1050px;
        height: 1050px;
        background: rgba(255,255,255,.55);
        border-radius: 999px;
        transform: rotate(-12deg);
        pointer-events: none;
    }

/* header */
.mb-hours__head {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mb-hours__kicker {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    color: #c9a68a;
    margin-bottom: .35rem;
}

.mb-hours__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    color: #2b2b2b;
}

.mb-hours__rule {
    width: 42px;
    height: 1px;
    background: #c9a68a;
    margin: 1.1rem auto 0;
}

/* layout */
.mb-hours__content {
    position: relative;
    z-index: 1;
    margin-top: 3.25rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* table */
.mb-hours__table {
    width: min(520px, 100%);
    margin-left: auto;
}

.mb-hours__row {
    display: grid;
    grid-template-columns: 160px 110px 110px;
    align-items: baseline;
    gap: 0;
    padding: .9rem 0;
}

.mb-hours__day {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    font-weight: 600;
    color: #2b2b2b;
    padding-bottom: .35rem;
    border-bottom: 1px solid rgba(201,166,138,.75);
    width: max-content;
}

.mb-hours__time {
    justify-self: start;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    color: #2b2b2b;
}

.mb-hours__time--span2 {
    grid-column: 2 / span 2;
    color: rgba(43,43,43,.72);
}

/* image */
.mb-hours__art {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: 360px;
}

    .mb-hours__art img {
        max-width: 420px;
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 22px 40px rgba(0,0,0,.12));
    }

/* responsive */
@media (max-width: 980px) {
    .mb-hours__content {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .mb-hours__table {
        margin: 0 auto;
    }

    .mb-hours__art {
        justify-content: center;
    }

    .mb-hours::after {
        right: -35%;
        bottom: -65%;
        width: 920px;
        height: 920px;
    }
}

@media (max-width: 768px) {
    .mb-hours__art {
        display: none;
    }
}



/* BOOK APPOINTMENT */

.mb-book {
    position: relative;
    background: #f3f2f1;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
    text-align: center;
}

    /* subtle diagonal texture */
    .mb-book::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( -45deg, rgba(255,255,255,.55) 0px, rgba(255,255,255,.55) 2px, rgba(255,255,255,0) 3px, rgba(255,255,255,0) 7px );
        opacity: .4;
        pointer-events: none;
    }

.mb-book__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.mb-book__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2b2b2b;
}

.mb-book__rule {
    width: 42px;
    height: 1px;
    background: #c9a68a;
    margin: 1.2rem auto 1.5rem;
}

.mb-book__text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    color: rgba(43,43,43,.75);
    margin-bottom: 2.1rem;
}

/* WhatsApp button */
.mb-book__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 52px;
    background: #e62b53;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .75rem;
    border-radius: 2px;
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
    transition: background .2s ease, transform .15s ease;
}

    .mb-book__cta:hover {
        background: #cf2348;
        transform: translateY(-1px);
    }

/* responsive */
@media (max-width: 640px) {
    .mb-book__cta {
        min-width: 100%;
    }
}


/* CONTACT */

.mb-contact {
    background: #d2b7a2; /* warm beige */
    padding: 5rem 0 6rem;
    position: relative;
    text-align: center;
    color: #2b2b2b;
}

.mb-contact__inner {
    max-width: 520px;
}

.mb-contact__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 4vw, 3rem);
    color: #ffffff;
}

.mb-contact__rule {
    width: 44px;
    height: 1px;
    background: rgba(255,255,255,.75);
    margin: 1.2rem auto 1.6rem;
}

.mb-contact__rule--small {
    width: 32px;
    margin: .9rem auto 1.2rem;
}

.mb-contact__email {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .95rem;
    color: rgba(43,43,43,.85);
    text-decoration: none;
    margin-bottom: 1.8rem;
}

    .mb-contact__email:hover {
        text-decoration: underline;
    }

.mb-contact__phone {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    color: #2b2b2b;
    text-decoration: none;
    margin-bottom: 1.6rem;
}

.mb-contact__address {
    font-style: normal;
    font-size: .9rem;
    line-height: 1.65;
    color: rgba(43,43,43,.85);
    margin-bottom: 3.2rem;
}

/* Social */

.mb-contact__social-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
}

.mb-contact__icons {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

/* Social icons with SVG */

.mb-social svg {
    width: 18px;
    height: 18px;
    fill: #c9a68a;
    transition: fill .2s ease;
}

/* Instagram hover */
.mb-social--instagram:hover svg {
    fill: #e1306c;
}

/* Facebook hover */
.mb-social--facebook:hover svg {
    fill: #1877f2;
}

/* =========================
   SHOWCASE SECTION
   ========================= */

.mb-showcase {
    background: #ececec;
    padding: 4.5rem 0 2.5rem;
}

.mb-showcase__head {
    text-align: center;
    max-width: 820px;
}

.mb-showcase__kicker {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: .95rem;
    color: rgba(201,166,138,.85);
    margin-bottom: .35rem;
}

.mb-showcase__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 3.2vw, 3rem);
    color: rgba(0,0,0,.75);
}

.mb-showcase__rule {
    width: 52px;
    height: 1px;
    background: rgba(201,166,138,.7);
    margin: 1.15rem auto 1.2rem;
}

.mb-showcase__sub {
    margin: 0 auto 2.6rem;
    max-width: 70ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .92rem;
    line-height: 1.8;
    color: rgba(0,0,0,.55);
}

/* strip */
.mb-showcase__strip {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 1.25rem;
    -webkit-overflow-scrolling: touch;
}

.mb-showcase__row {
    display: flex;
    gap: 1.25rem;
    width: max-content; /* allows horizontal scroll cleanly */
    padding: 0 1rem;
}

    /* each slider card width on desktop */
    .mb-showcase__row > .mb-compare {
        flex: 0 0 360px;
    }

/* Tablet: slightly smaller */
@media (max-width: 1024px) {
    .mb-showcase__row > .mb-compare {
        flex-basis: 320px;
    }
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .mb-showcase__strip {
        overflow: visible;
        padding-bottom: 0;
    }

    .mb-showcase__row {
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

        .mb-showcase__row > .mb-compare {
            flex: 1 1 auto;
            width: 100%;
        }
}

/* =========================
   COMPARE (DESKTOP SLIDER + MOBILE BUTTONS)
   ========================= */

.mb-compare {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 420px;
    background: #fff;
}

/* IMPORTANT: images must fill the box */
.mb-compare__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* overlay layer (this is what we resize) */
.mb-compare__after {
    position: absolute;
    inset: 0;
    width: 50%; /* desktop default */
    overflow: hidden;
}

/* range is invisible but captures pointer on desktop */
.mb-compare__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    touch-action: pan-x;
}

/* handle */
.mb-compare__handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}

    .mb-compare__handle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 22px;
        height: 22px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(0,0,0,.18);
        border-radius: 4px;
        box-shadow: 0 8px 18px rgba(0,0,0,.12);
    }

/* mobile toggle buttons hidden on desktop */
.mb-compare__toggle {
    display: none;
}

/* Mobile sizing */
@media (max-width: 768px) {
    .mb-compare {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mb-compare {
        height: 240px;
    }
}

/* MOBILE MODE: buttons control the overlay width */
@media (max-width: 768px) {
    /* disable the slider UI on mobile */
    .mb-compare__range,
    .mb-compare__handle {
        display: none !important;
    }

    /* default before */
    .mb-compare {
        --mobile-after: 0%;
    }

        /* THIS must be last so it wins over width:50% */
        .mb-compare .mb-compare__after {
            width: var(--mobile-after, 0%);
            transition: width 140ms ease;
        }

    /* show toggle */
    .mb-compare__toggle {
        display: inline-flex;
        gap: .5rem;
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        padding: .35rem;
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(0,0,0,.12);
        box-shadow: 0 10px 24px rgba(0,0,0,.10);
        z-index: 5;
    }

    .mb-compare__btn {
        border: 0;
        background: transparent;
        padding: .5rem .8rem;
        border-radius: 999px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: .85rem;
        color: rgba(0,0,0,.65);
        cursor: pointer;
    }

        .mb-compare__btn.is-active {
            background: rgba(201,166,138,.22);
            color: rgba(0,0,0,.78);
            font-weight: 600;
        }
}








