/* ================================================================
   Mary Maud Creations — Brand Design System
   Palette: Gold #B8955A | Dark #1C1C1C | Cream #FAF7F2 | White #FFF
   Fonts: Playfair Display (headings) | Inter (body)
================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --mmc-gold:         #B8955A;
    --mmc-gold-dark:    #9A7A45;
    --mmc-gold-light:   #D4B483;
    --mmc-gold-pale:    #F5EDDF;
    --mmc-dark:         #1C1C1C;
    --mmc-charcoal:     #3A3A3A;
    --mmc-mid:          #666666;
    --mmc-cream:        #FAF7F2;
    --mmc-cream-dark:   #F0EAE0;
    --mmc-white:        #FFFFFF;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
}

/* ── Base ──────────────────────────────────────────────────────── */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--mmc-charcoal);
    background: var(--mmc-white);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* ── Utilities ─────────────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-6 { margin-bottom: 5rem; }

/* ── Navbar ────────────────────────────────────────────────────── */
.mmc-navbar {
    background: var(--mmc-white) !important;
    border-bottom: 1px solid var(--mmc-cream-dark);
    padding: 0.75rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.mmc-logo {
    height: 56px;
    width: auto;
}

.mmc-nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mmc-charcoal) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    transition: color 0.2s;
}

.mmc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--mmc-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.mmc-nav-link:hover,
.mmc-nav-link.active {
    color: var(--mmc-gold) !important;
}

.mmc-nav-link:hover::after,
.mmc-nav-link.active::after {
    transform: scaleX(1);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.mmc-btn-gold {
    background: var(--mmc-gold);
    color: var(--mmc-white) !important;
    border: 2px solid var(--mmc-gold);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    text-decoration: none;
    display: inline-block;
}
.mmc-btn-gold:hover {
    background: var(--mmc-gold-dark);
    border-color: var(--mmc-gold-dark);
    color: var(--mmc-white) !important;
}

.mmc-btn-outline {
    background: transparent;
    color: var(--mmc-gold) !important;
    border: 2px solid var(--mmc-gold);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
    display: inline-block;
}
.mmc-btn-outline:hover,
.mmc-btn-outline.active {
    background: var(--mmc-gold);
    color: var(--mmc-white) !important;
}

.mmc-btn-outline-gold {
    background: transparent;
    color: var(--mmc-white) !important;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    text-decoration: none;
    display: inline-block;
}
.mmc-btn-outline-gold:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    color: white !important;
}

.mmc-btn-outline-light {
    background: transparent;
    color: var(--mmc-gold-light) !important;
    border: 2px solid var(--mmc-gold-light);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
    display: inline-block;
}
.mmc-btn-outline-light:hover {
    background: var(--mmc-gold-light);
    color: var(--mmc-dark) !important;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.mmc-hero {
    background: radial-gradient(ellipse at 50% 0%, #272118 0%, #1A1714 40%, #0F0E0C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Soft gold radial bloom centred behind the logo */
.mmc-hero-bloom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(184,149,90,0.18) 0%,
        rgba(184,149,90,0.07) 35%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Logo as centrepiece */
.mmc-hero-logo-wrap {
    position: relative;
    z-index: 2;
}

.mmc-hero-logo {
    width: min(520px, 82vw);
    height: auto;
    /* Subtle entrance animation */
    animation: heroLogoIn 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    /* Very gentle golden drop-shadow to lift it from the dark bg */
    filter: drop-shadow(0 0 40px rgba(184,149,90,0.22))
            drop-shadow(0 8px 24px rgba(0,0,0,0.55));
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
        filter: drop-shadow(0 0 0px rgba(184,149,90,0))
                drop-shadow(0 0 0px rgba(0,0,0,0));
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 40px rgba(184,149,90,0.22))
                drop-shadow(0 8px 24px rgba(0,0,0,0.55));
    }
}

.mmc-hero-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.60);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Scroll cue — animated chevron */
.mmc-scroll-cue {
    display: flex;
    justify-content: center;
}
.mmc-scroll-cue span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(184,149,90,0.5);
    border-bottom: 2px solid rgba(184,149,90,0.5);
    transform: rotate(45deg);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
    50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── Gold divider ──────────────────────────────────────────────── */
.mmc-gold-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--mmc-gold), transparent);
}

.mmc-gold-rule {
    border: none;
    border-top: 1px solid var(--mmc-gold-pale);
}

/* ── Section styles ────────────────────────────────────────────── */
.mmc-section-light { background: var(--mmc-cream); }
.mmc-section-dark  { background: var(--mmc-dark); }

/* ── Services section — interior photo background ──────────────── */
.mmc-services-bg {
    position: relative;
    background:
        linear-gradient(
            rgba(18, 13, 8, 0.78),
            rgba(18, 13, 8, 0.78)
        ),
        url('/images/interior-hero.jpg') center center / cover no-repeat fixed;
}

.mmc-section-sub-light {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.mmc-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--mmc-dark);
    margin-bottom: 0.5rem;
}

.mmc-section-title-light {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--mmc-white);
    margin-bottom: 0.5rem;
}

.mmc-section-sub {
    font-size: 1rem;
    color: var(--mmc-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.mmc-body-text {
    font-size: 1rem;
    color: var(--mmc-charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mmc-body-light {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

/* ── Service cards (homepage grid) ────────────────────────────── */
.mmc-service-card {
    background: var(--mmc-white);
    border: 1px solid var(--mmc-cream-dark);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.mmc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(184,149,90,0.12);
    border-color: var(--mmc-gold);
}

.mmc-service-icon {
    width: 52px;
    height: 52px;
    background: var(--mmc-gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--mmc-gold);
}

.mmc-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mmc-dark);
    margin-bottom: 0.6rem;
}

.mmc-service-text {
    font-size: 0.92rem;
    color: var(--mmc-mid);
    line-height: 1.7;
    margin: 0;
}

/* ── Service cards — dark (used on photo background) ───────────── */
.mmc-service-card-dark {
    background: rgba(15, 10, 5, 0.60);
    border: 1px solid rgba(184,149,90,0.30);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s, background 0.25s;
}
.mmc-service-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    border-color: var(--mmc-gold);
    background: rgba(15, 10, 5, 0.75);
}
.mmc-service-card-dark .mmc-service-title { color: var(--mmc-white); }
.mmc-service-card-dark .mmc-service-text  { color: rgba(255,255,255,0.65); }
.mmc-service-card-dark .mmc-service-icon  { background: rgba(184,149,90,0.18); }

/* ── Stat / feature cards ──────────────────────────────────────── */
.mmc-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,149,90,0.25);
    border-radius: 4px;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, background 0.2s;
}
.mmc-stat-card:hover {
    border-color: var(--mmc-gold);
    background: rgba(184,149,90,0.06);
}
.mmc-stat-icon {
    font-size: 1.6rem;
    color: var(--mmc-gold);
    flex-shrink: 0;
}
.mmc-stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.35;
}

/* ── CTA strip ─────────────────────────────────────────────────── */
.mmc-cta-strip {
    background: var(--mmc-gold-pale);
    border-top: 1px solid var(--mmc-cream-dark);
    border-bottom: 1px solid var(--mmc-cream-dark);
}
.mmc-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--mmc-dark);
}
.mmc-cta-sub {
    color: var(--mmc-mid);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ── Page header (inner pages) ─────────────────────────────────── */
.mmc-page-header {
    background: var(--mmc-dark);
    padding: 5rem 0 4rem;
    position: relative;
}
.mmc-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--mmc-gold), transparent);
}
.mmc-page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--mmc-white);
    margin-bottom: 0.75rem;
}
.mmc-page-header-sub {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mmc-gold);
    margin: 0;
}

/* ── Services detail page ──────────────────────────────────────── */
.mmc-svc-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(184,149,90,0.15);
}
.mmc-svc-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.mmc-svc-img-wrap:hover .mmc-svc-img {
    transform: scale(1.03);
}
.mmc-svc-number-label {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(184,149,90,0.18);
    font-family: var(--mmc-font-heading);
    line-height: 1;
    margin-bottom: -0.5rem;
}
.mmc-service-number-block {
    position: relative;
    display: inline-block;
}
.mmc-service-big-icon {
    font-size: 3.5rem;
    color: var(--mmc-gold-pale);
    display: block;
}
.mmc-service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--mmc-gold);
    opacity: 0.18;
    line-height: 1;
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
}
.mmc-service-detail-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--mmc-dark);
    margin-bottom: 0.5rem;
}
.mmc-service-detail-short {
    font-size: 1rem;
    color: var(--mmc-gold-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ── About page ────────────────────────────────────────────────── */
.mmc-about-logo-wrap {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

/* Soft gold radial glow behind the logo on the cream background */
.mmc-about-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(184,149,90,0.14) 0%,
        rgba(184,149,90,0.05) 50%,
        transparent 75%
    );
    pointer-events: none;
}

.mmc-about-logo {
    width: min(380px, 90%);
    height: auto;
    position: relative;
    filter: drop-shadow(0 8px 24px rgba(184,149,90,0.18))
            drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.mmc-about-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(184,149,90,0.28))
            drop-shadow(0 4px 12px rgba(0,0,0,0.10));
    transform: translateY(-4px);
}
.mmc-value-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--mmc-gold-pale);
    border-radius: 4px;
    transition: border-color 0.25s, transform 0.25s;
    height: 100%;
}
.mmc-value-card:hover {
    border-color: var(--mmc-gold);
    transform: translateY(-4px);
}
.mmc-value-icon {
    font-size: 2rem;
    color: var(--mmc-gold);
    display: block;
    margin-bottom: 1rem;
}
.mmc-value-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--mmc-white);
    margin-bottom: 0.75rem;
}
.mmc-value-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ── Contact page ──────────────────────────────────────────────── */
.mmc-contact-form-card {
    background: var(--mmc-white);
    border: 1px solid var(--mmc-cream-dark);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.mmc-contact-person {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184,149,90,0.18);
}
.mmc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.mmc-contact-icon {
    font-size: 1.2rem;
    color: var(--mmc-gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.mmc-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mmc-gold);
    margin-bottom: 0.1rem;
}
.mmc-contact-value {
    font-size: 0.95rem;
    color: var(--mmc-charcoal);
    text-decoration: none;
}
.mmc-contact-value:hover { color: var(--mmc-gold); }

.mmc-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mmc-service-list li {
    font-size: 0.9rem;
    color: var(--mmc-mid);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}
.mmc-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--mmc-gold);
    border-radius: 50%;
}

.mmc-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mmc-charcoal);
    margin-bottom: 0.4rem;
    display: block;
}
.mmc-input {
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mmc-input:focus {
    border-color: var(--mmc-gold);
    box-shadow: 0 0 0 3px rgba(184,149,90,0.12);
    outline: none;
}
.mmc-alert-success {
    background: #f0f7f0;
    border: 1px solid #c3e6cb;
    color: #2d6a4f;
    border-radius: 2px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.mmc-footer {
    background: var(--mmc-dark);
    padding: 3rem 0 2rem;
}
.mmc-tagline-small {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mmc-gold);
}
.mmc-footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.mmc-footer-link:hover { color: var(--mmc-gold); }
.mmc-footer-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(184,149,90,0.25));
}
.mmc-footer-rule {
    border-color: rgba(255,255,255,0.08);
}

.mmc-footer-contact {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: color 0.2s;
}
.mmc-footer-contact:hover { color: var(--mmc-gold); }

/* ── WhatsApp floating button ───────────────────────────────────── */
.mmc-whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.40);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mmc-whatsapp-fab i {
    font-size: 1.5rem;
    line-height: 1;
}
.mmc-whatsapp-fab:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.50);
}
.mmc-whatsapp-fab-label {
    font-size: 0.9rem;
}
@media (max-width: 576px) {
    .mmc-whatsapp-fab-label { display: none; }
    .mmc-whatsapp-fab { padding: 0.85rem; border-radius: 50%; }
}

/* ── Projects gallery ───────────────────────────────────────────── */
.mmc-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.mmc-filter-btn {
    padding: 0.45rem 1.25rem;
    border: 1px solid var(--mmc-gold-pale);
    background: transparent;
    color: var(--mmc-text);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mmc-filter-btn:hover,
.mmc-filter-btn.active {
    background: var(--mmc-gold);
    color: #fff;
    border-color: var(--mmc-gold);
}
.mmc-project-card {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mmc-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.mmc-project-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.mmc-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.mmc-project-card:hover .mmc-project-img {
    transform: scale(1.04);
}
.mmc-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,18,8,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.mmc-project-card:hover .mmc-project-overlay {
    opacity: 1;
}
.mmc-project-view {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}
.mmc-project-info {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mmc-project-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mmc-gold);
    background: rgba(184,149,90,0.10);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
}
.mmc-project-title {
    font-family: var(--mmc-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mmc-dark);
    margin-bottom: 0.25rem;
}
.mmc-project-location {
    font-size: 0.83rem;
    color: #888;
    margin-bottom: 0;
}

/* Modal */
.mmc-modal-content {
    background: #111;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.mmc-modal-header {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(184,149,90,0.20);
    padding: 1rem 1.5rem;
}
.mmc-modal-title {
    font-family: var(--mmc-font-heading);
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
}
.mmc-modal-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.mmc-carousel-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    background: #000;
}
.mmc-carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
}
.mmc-carousel-indicators .active {
    background-color: var(--mmc-gold);
}

/* ── Google Map ─────────────────────────────────────────────────── */
.mmc-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(184,149,90,0.25);
}

/* ── Focus/accessibility ────────────────────────────────────────── */
.btn:focus-visible,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(184,149,90,0.25);
    outline: none;
}
