/* =============================================================================
   MMD Parent Theme — Main Stylesheet
   ============================================================================= */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --mmd-red:          #C0392B;
    --mmd-dark:         #1A1A1A;
    --mmd-dark-2:       #222222;
    --mmd-gray:         #444444;
    --mmd-light-gray:   #f0f0f0;
    --mmd-paper:        #f5f3ee;
    --mmd-white:        #ffffff;
    --mmd-border:       #cccccc;
    --mmd-accent:       #C0392B;
    --mmd-font-body:      'Roboto', Arial, sans-serif;
    --mmd-font-heading:   'Raleway', Arial, sans-serif;
    --mmd-font-condensed: 'Roboto Condensed', Arial, sans-serif;
    --mmd-font-display:   'Rock Salt', 'Trebuchet MS', Arial, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mmd-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Base ───────────────────────────────────────────────────── */
body {
    font-family: var(--mmd-font-body);
    color: var(--mmd-dark);
    background: var(--mmd-dark) url('../images/bg-body.jpg') center top / cover no-repeat fixed;
    font-size: 16px;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--mmd-font-heading); line-height: 1.2; margin-bottom: 0.75rem; font-weight: 700; }
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* =============================================================================
   SITE WRAPPER
   ============================================================================= */
.mmd-site-top { background: rgba(0,0,0,0.7); width: 100%; max-width: 1007px; margin: 0 auto; }
.mmd-main { background: url('../images/paper-body.png') top center repeat-y; background-size: 100% auto; max-width: 1005px; margin: 0 auto; position: relative; padding: 2em 2em 4em 4em; }

/* =============================================================================
   HEADER
   ============================================================================= */
.mmd-header { background: transparent; width: 100%; }
.mmd-header__top { display: flex; align-items: center; justify-content: space-between; padding: 3rem 1.5rem; }
.mmd-header__wordmark { position: absolute; left: 38%; transform: translateX(-50%); }
.mmd-header__wordmark img { height: 80px; width: auto; }
.mmd-header__right { margin-left: auto; display: flex; align-items: center; }
.mmd-header__phone { display: flex; flex-direction: column; align-items: flex-end; color: var(--mmd-white); text-decoration: none; }
.mmd-header__phone:hover { text-decoration: none; }
.mmd-header__phone-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: #aaaaaa; }
.mmd-header__phone-label img { height: 14px; }
.mmd-header__phone-number { font-size: 2rem; font-weight: 800; color: var(--mmd-white); line-height: 1.1; font-family: var(--mmd-font-heading); }
.mmd-header__phone-status { font-size: 0.75rem; color: #aaaaaa; text-align: right; }
.mmd-header__phone-status span { color: #4CAF50; font-weight: 700; }

/* =============================================================================
   NAV
   ============================================================================= */
.mmd-nav-wrap { width: 100%; position: relative; margin-bottom: -26px; }
.mmd-nav { background: url('../images/paper-top.png') center bottom no-repeat; background-size: 100% auto; width: 100%; position: relative; height: 70px; }
.mmd-nav__list { display: flex; position: absolute; bottom: 0; left: 0; padding: 0 2rem 30px; align-items: flex-end; gap: 4px; }
.mmd-nav__item { background: #FFFABE; border-top-right-radius: 10px; border-top-left-radius: 10px; position: relative; }
.mmd-nav__item:nth-child(1) { margin-bottom: 0px; }
.mmd-nav__item:nth-child(2) { margin-bottom: 19px; }
.mmd-nav__item:nth-child(3) { margin-bottom: 9px; }
.mmd-nav__item:nth-child(4) { margin-bottom: 0px; }
.mmd-nav__item:nth-child(5) { margin-bottom: 7px; }
.mmd-nav__item > a { display: block; color: #111; padding: 0.5rem 1.1rem; font-family: var(--mmd-font-display); font-size: 1rem; white-space: nowrap; transition: background 0.15s; font-weight: bold; }
.mmd-nav__item > a:hover { background: rgba(0,0,0,0.06); text-decoration: none; color: #111; border-radius: 8px 8px 0 0; }
.mmd-nav__item--has-dropdown > a::after { content: ' ▾'; font-size: 0.8rem; }
.mmd-nav__dropdown { display: none; position: absolute; top: 100%; left: 0; background: #FFFABE; min-width: 200px; z-index: 200; border: 1px solid #ccc; border-top: none; }
.mmd-nav__item--has-dropdown:hover .mmd-nav__dropdown { display: block; }
.mmd-nav__dropdown li a { display: block; color: #111; padding: 0.6rem 1rem; font-family: var(--mmd-font-display); font-size: 0.9rem; border-bottom: 1px solid #ddd; transition: background 0.15s; font-weight: bold; }
.mmd-nav__dropdown li:last-child a { border-bottom: none; }
.mmd-nav__dropdown li a:hover { background: #F0E868; text-decoration: none; }

/* Hamburger — hidden on desktop */
.mmd-nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: #FFFABE; border: none; cursor: pointer; padding: 0.6rem 0.75rem; position: absolute; top: 10px; right: 10px; z-index: 300; border-radius: 4px; }
.mmd-nav__hamburger span { display: block; width: 22px; height: 2px; background: #111; transition: all 0.25s ease; transform-origin: center; }
.mmd-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mmd-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mmd-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   BUTTONS
   ============================================================================= */
.mmd-btn { display: inline-block; background: var(--mmd-accent); color: var(--mmd-white); padding: 0.7rem 1.5rem; font-family: var(--mmd-font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; border: none; cursor: pointer; transition: opacity 0.2s; }
.mmd-btn:hover { opacity: 0.85; text-decoration: none; color: var(--mmd-white); }
.mmd-btn--full { display: block; width: 100%; text-align: center; margin-top: 1rem; }
.mmd-btn--primary { display: inline-block; background: var(--mmd-accent); color: #fff; padding: 0.75rem 1.5rem; font-family: var(--mmd-font-heading); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; border: none; cursor: pointer; transition: opacity 0.2s; margin-top: auto; text-align: center; }
.mmd-btn--primary:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.mmd-btn--secondary { display: inline-block; background: transparent; color: var(--mmd-accent); padding: 0.7rem 1.5rem; font-family: var(--mmd-font-heading); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; border: 2px solid var(--mmd-accent); cursor: pointer; transition: all 0.2s; text-align: center; }
.mmd-btn--secondary:hover { background: var(--mmd-accent); color: #fff; text-decoration: none; }

/* =============================================================================
   LEAD FORM
   ============================================================================= */
.mmd-lead-form { padding: 1.5rem 0; }
.mmd-lead-form__inner { padding: 0 2rem; }
.mmd-lead-form h2 { font-family: var(--mmd-font-display); font-size: 1.3rem; font-weight: 400; color: #111; margin-bottom: 0.25rem; }
.mmd-lead-form p { color: #333; font-size: 0.9rem; margin-bottom: 1rem; }
.mmd-form__row { display: flex; gap: 1rem; }
.mmd-form__field { flex: 1; display: flex; flex-direction: column; margin-bottom: 0.75rem; }
.mmd-form__field label { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.3rem; color: #222; }
.mmd-form__field input[type="text"], .mmd-form__field input[type="email"], .mmd-form__field input[type="tel"], .mmd-form__field textarea { border: 1px solid #ccc; padding: 0.5rem 0.65rem; font-size: 0.95rem; font-family: var(--mmd-font-body); width: 100%; background: #fff; }
.mmd-form__field textarea { resize: vertical; }
.mmd-form__field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.5rem; }
.mmd-form__field--checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.mmd-form__field--checkbox label { font-weight: 400; font-size: 0.8rem; color: #555; }
.mmd-lead-form__success { background: #d4edda; color: #155724; padding: 1rem; margin-bottom: 1rem; border: 1px solid #c3e6cb; }

/* =============================================================================
   PAGE HEADER
   ============================================================================= */
.mmd-page-header { padding: 2rem 2rem 1.5rem; }
.mmd-page-header h1 { font-family: var(--mmd-font-display); font-size: 1.6rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-page-header p { color: #333; font-size: 0.95rem; max-width: 700px; }

/* =============================================================================
   FAQ
   ============================================================================= */
.mmd-faq-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.mmd-faq-tab { display: inline-block; padding: 0.4rem 1rem; background: #FFFABE; border: 1px solid #ccc; color: #111; font-family: var(--mmd-font-display); font-size: 0.9rem; border-radius: 4px 4px 0 0; transition: background 0.15s; }
.mmd-faq-tab:hover { background: #F0E868; text-decoration: none; color: #111; }
.mmd-faq-tab--active { background: #F0E868; border-color: #bbb; }
.mmd-faq { padding: 0 2rem 2rem; }
.mmd-faq__item { border-bottom: 1px solid #ddd; }
.mmd-faq__item:first-child { border-top: 1px solid #ddd; }
.mmd-faq__question { width: 100%; background: #DFDFD0; border: none; padding: 0.75rem 1rem; text-align: left; font-size: 0.95rem; font-weight: 700; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--mmd-font-body); margin-top: 4px; }
.mmd-faq__question:hover { background: #d0d0c0; }
.mmd-faq__question[aria-expanded="true"] { background: #cfcfbf; }
.mmd-faq__icon { font-size: 1.2rem; font-weight: 300; flex-shrink: 0; transition: transform 0.2s; color: #666; }
.mmd-faq__question[aria-expanded="true"] .mmd-faq__icon { transform: rotate(45deg); }
.mmd-faq__answer { padding: 0.75rem 1rem 1rem; background: #EDEEE3; }
.mmd-faq__answer p { margin: 0; color: #333; line-height: 1.7; font-size: 0.9rem; }

/* =============================================================================
   404 / CONTENT
   ============================================================================= */
.mmd-content { padding: 2rem; }
.mmd-content__header { margin-bottom: 1.5rem; border-bottom: 2px solid var(--mmd-accent); padding-bottom: 0.75rem; }
.mmd-content__body p { margin-bottom: 1rem; color: #333; }
.mmd-content--404 { text-align: center; padding: 4rem 2rem; }
.mmd-content--404 ul { margin: 1.5rem 0; }
.mmd-content--404 li { margin-bottom: 0.5rem; }

/* =============================================================================
   SLIDESHOW
   ============================================================================= */
.mmd-slideshow { background: transparent; padding: 0; }
.mmd-slideshow__inner { position: relative; overflow: hidden; }
.mmd-slideshow__track { display: flex; transition: transform 0.4s ease; }
.mmd-slideshow__slide { min-width: 100%; }
.mmd-slideshow__slide img { width: 100%; display: block; }
.mmd-slideshow__prev, .mmd-slideshow__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; padding: 0.75rem 0.6rem; cursor: pointer; font-size: 1rem; z-index: 10; }
.mmd-slideshow__prev { left: 0; }
.mmd-slideshow__next { right: 0; }

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.mmd-testimonials { padding: 1rem 2rem; }
.mmd-testimonial-slider { position: relative; overflow: hidden; }
.mmd-testimonial-slider__track { display: flex; transition: transform 0.4s ease; }
.mmd-testimonial-slider__slide { min-width: 100%; }
.mmd-testimonial-slider__slide img { width: 100%; max-width: 700px; margin: 0 auto; }
.mmd-testimonial-slider__prev, .mmd-testimonial-slider__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; border: none; padding: 0.75rem 0.6rem; cursor: pointer; font-size: 1rem; z-index: 10; }
.mmd-testimonial-slider__prev { left: 0; }
.mmd-testimonial-slider__next { right: 0; }

/* =============================================================================
   HOMEPAGE — LEGACY
   ============================================================================= */
.mmd-page-intro { padding: 1.5rem 2rem 0; text-align: center; }
.mmd-page-intro h1 { font-family: var(--mmd-font-display); font-size: 1.4rem; font-weight: 400; color: #111; text-transform: uppercase; line-height: 1.4; }
.mmd-home-top { padding: 1.5rem 0; }
.mmd-home-top__inner { display: flex; gap: 2rem; padding: 0 2rem; align-items: flex-start; }
.mmd-home-top__shows { flex: 1; }
.mmd-home-top__form { flex: 1; }
.mmd-shows-box { background: #fff; border: 1px solid var(--mmd-border); padding: 1.25rem; }
.mmd-shows-box h2 { font-family: var(--mmd-font-heading); font-size: 1rem; font-weight: 700; color: #111; text-align: center; margin-bottom: 1rem; text-transform: uppercase; }
.mmd-shows-box__empty { color: #666; font-style: italic; text-align: center; padding: 1rem 0; }
.mmd-about { padding: 1.5rem 2rem; }
.mmd-about__heading { text-align: center; margin-bottom: 1.5rem; }
.mmd-about__heading h2 { font-family: var(--mmd-font-display); font-size: 1.6rem; font-weight: 400; color: #111; text-transform: uppercase; }
.mmd-about__heading h3 { font-size: 1rem; font-weight: 600; color: #333; }
.mmd-about__cols { display: flex; gap: 2rem; align-items: flex-start; }
.mmd-about__cols .mmd-slideshow { flex: 0 0 40%; padding: 0; background: transparent; }
.mmd-about__text { flex: 1; font-size: 1rem; color: #333; }
.mmd-about__text a { color: var(--mmd-accent); }
.mmd-booking { padding: 1.5rem 2rem; text-align: center; }
.mmd-booking h3 { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 0.75rem; }
.mmd-booking p { color: #333; }
.mmd-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-top: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.mmd-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.mmd-virtual { padding: 1.5rem 2rem; }
.mmd-virtual__inner { display: flex; gap: 2rem; align-items: center; }
.mmd-virtual__image { flex: 1; text-align: center; }
.mmd-virtual__text { flex: 1; }
.mmd-virtual__text h3 { font-family: var(--mmd-font-display); font-size: 1.1rem; font-weight: 400; color: #111; margin-bottom: 0.75rem; }
.mmd-virtual__text p { color: #333; font-size: 0.95rem; }
.mmd-clients { padding: 1rem 2rem; text-align: center; }
.mmd-clients img { margin: 0 auto; max-width: 100%; }
.mmd-shows-cta { padding: 1.5rem 2rem; text-align: center; }
.mmd-shows-cta p { color: #333; font-size: 1rem; margin-bottom: 1rem; }

/* =============================================================================
   HOMEPAGE — REBUILT
   ============================================================================= */
.mmd-hero-split { padding: 2rem 2rem 0; }
.mmd-hero-split__h1 { font-family: var(--mmd-font-display); font-size: 1.5rem; font-weight: 400; color: #111; text-transform: uppercase; text-align: center; margin-bottom: 1.5rem; line-height: 1.4; }
.mmd-hero-split__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mmd-hero-split__col-inner { padding: 1.5rem; height: 100%; display: flex; flex-direction: column; }
.mmd-hero-split__col--public .mmd-hero-split__col-inner { background: #fff; border: 2px solid #ddd; border-top: 4px solid var(--mmd-accent); }
.mmd-hero-split__col--private .mmd-hero-split__col-inner { background: #1a1a1a; border: 2px solid #333; border-top: 4px solid var(--mmd-accent); }
.mmd-hero-split__eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mmd-accent); margin-bottom: 0.5rem; display: block; }
.mmd-hero-split__h2 { font-family: var(--mmd-font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.75rem; line-height: 1.3; }
.mmd-hero-split__col--public .mmd-hero-split__h2 { color: #111; }
.mmd-hero-split__col--private .mmd-hero-split__h2 { color: #fff; }
.mmd-hero-split__col--public p { color: #444; font-size: 0.9rem; }
.mmd-hero-split__col--private p { color: #aaa; font-size: 0.9rem; }
.mmd-hero-split__dates { margin: 0.75rem 0; flex: 1; }
.mmd-hero-split__dates li { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid #eee; font-size: 0.85rem; color: #333; gap: 0.5rem; }
.mmd-hero-split__dates li:last-child { border-bottom: none; }
.mmd-hero-split__date-venue { color: #888; font-size: 0.8rem; display: block; }
.mmd-hero-split__ticket-link { font-size: 0.78rem; font-weight: 700; color: var(--mmd-accent); white-space: nowrap; flex-shrink: 0; }
.mmd-hero-split__ticket-link:hover { text-decoration: underline; }
.mmd-hero-split__occasions { margin: 0.75rem 0; flex: 1; }
.mmd-hero-split__occasions li { padding: 0.35rem 0; border-bottom: 1px solid #333; font-size: 0.88rem; color: #ccc; }
.mmd-hero-split__occasions li:last-child { border-bottom: none; }

.mmd-home-section { padding: 2rem; border-top: 1px solid #e0ddd6; }
.mmd-home-section h2 { font-family: var(--mmd-font-display); font-size: 1.4rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-home-section__intro { color: #444; font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 800px; }
.mmd-home-section__intro a { color: var(--mmd-accent); }
.mmd-home-section__cta { margin-top: 1.5rem; }

.mmd-home-public__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.mmd-home-public__text p { color: #333; font-size: 0.95rem; }
.mmd-home-public__ideal { background: #f9f8f4; border-left: 3px solid var(--mmd-accent); padding: 0.75rem 1rem; margin: 1rem 0; font-size: 0.9rem; color: #444; }
.mmd-home-public__ideal strong { color: #111; }

.mmd-home-occasions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1rem; }
.mmd-occasion-card { background: #fff; border: 1px solid #ddd; padding: 1.25rem; text-align: center; }
.mmd-occasion-card__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.mmd-occasion-card h3 { font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.5rem; font-family: var(--mmd-font-heading); }
.mmd-occasion-card p { font-size: 0.82rem; color: #555; margin: 0; }

.mmd-home-corporate { background: #1a1a1a; }
.mmd-home-corporate .mmd-home-section__inner h2 { color: #fff; }
.mmd-home-corporate .mmd-home-section__intro { color: #aaa; }
.mmd-home-corporate__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mmd-corporate-feature { padding: 1.25rem; border: 1px solid #333; background: #222; }
.mmd-corporate-feature h4 { font-family: var(--mmd-font-heading); font-size: 0.95rem; font-weight: 700; color: var(--mmd-accent); margin-bottom: 0.5rem; }
.mmd-corporate-feature p { font-size: 0.82rem; color: #aaa; margin: 0; }
.mmd-home-corporate .mmd-btn--secondary { color: #fff; border-color: #fff; }
.mmd-home-corporate .mmd-btn--secondary:hover { background: #fff; color: #111; }

.mmd-whyus__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mmd-whyus__item { text-align: center; padding: 1.25rem 1rem; background: #fff; border: 1px solid #ddd; }
.mmd-whyus__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.mmd-whyus__item h4 { font-family: var(--mmd-font-heading); font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.mmd-whyus__item p { font-size: 0.82rem; color: #555; margin: 0; }

.mmd-home-local { background: #f9f8f4; }
.mmd-home-local__body p { color: #333; font-size: 0.95rem; margin-bottom: 0.75rem; }
.mmd-home-local__areas { font-size: 0.88rem; color: #555; font-style: italic; }
.mmd-home-local__areas strong { color: #111; font-style: normal; }

.mmd-themes-preview__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.mmd-themes-preview__item { display: flex; flex-direction: column; text-align: center; color: #111; text-decoration: none; transition: transform 0.2s; }
.mmd-themes-preview__item:hover { transform: translateY(-2px); text-decoration: none; }
.mmd-themes-preview__item img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 0.4rem; border: 1px solid #ddd; }
.mmd-themes-preview__item span { font-size: 0.72rem; color: #555; line-height: 1.3; }

.mmd-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.mmd-review-card { background: #fff; border: 1px solid #ddd; padding: 1.25rem; display: flex; flex-direction: column; }
.mmd-review-card__stars { color: #f5a623; font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.mmd-review-card__text { font-size: 0.88rem; color: #444; line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 0.75rem; }
.mmd-review-card__author { font-size: 0.78rem; font-weight: 700; color: #888; margin: 0; }
.mmd-review-card__company { font-weight: 400; color: #aaa; }
.mmd-home-companies { margin-top: 1.5rem; text-align: center; }
.mmd-home-companies h3 { font-family: var(--mmd-font-heading); font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.mmd-home-companies__list { font-size: 0.88rem; color: #666; font-style: italic; }
.mmd-home-faq { background: #f9f8f4; }
.mmd-home-faq .mmd-faq__inner { max-width: 800px; }

/* =============================================================================
   SHOW THEMES
   ============================================================================= */
.mmd-themes { padding: 0 2rem 2rem; }
.mmd-themes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mmd-theme-card { display: block; border: 1px solid #ddd; background: #fff; transition: box-shadow 0.2s, transform 0.2s; color: var(--mmd-dark); }
.mmd-theme-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-2px); text-decoration: none; }
.mmd-theme-card__image img { width: 100%; height: 180px; object-fit: cover; }
.mmd-theme-card__content { padding: 1rem; }
.mmd-theme-card__content h3 { color: var(--mmd-accent); font-size: 1rem; margin-bottom: 0.4rem; }
.mmd-theme-card__content p { font-size: 0.85rem; color: #555; margin: 0; }
.mmd-theme-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 2px; margin-right: 0.4rem; margin-top: 0.5rem; }
.mmd-theme-badge--private { background: var(--mmd-accent); color: #fff; }
.mmd-theme-badge--public { background: #1a1a1a; color: #fff; }
.mmd-theme-card__badges { margin-top: 0.5rem; }
.mmd-themes-cta { padding: 2rem; text-align: center; border-top: 1px solid #e0ddd6; background: #f9f8f4; }
.mmd-themes-cta__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.5rem; }
.mmd-themes-cta__inner p { color: #555; font-size: 0.95rem; margin-bottom: 1.25rem; }
.mmd-themes-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.mmd-theme-hero { position: relative; }
.mmd-theme-hero__image img { width: 100%; max-height: 400px; object-fit: cover; display: block; }
.mmd-theme-hero__content { padding: 1.5rem 2rem 1rem; background: #fff; border-bottom: 1px solid #e0ddd6; }
.mmd-theme-hero__content h1 { font-family: var(--mmd-font-display); font-size: 1.8rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.4rem; line-height: 1.2; }
.mmd-theme-hero__tagline { font-size: 1rem; color: #555; font-style: italic; margin: 0; }
.mmd-theme-content { padding: 2rem; }
.mmd-theme-content__inner { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }
.mmd-theme-content__description { font-size: 0.95rem; color: #333; line-height: 1.8; margin-bottom: 1.5rem; }
.mmd-theme-content__description p { color: #333; }
.mmd-theme-details { background: #f9f8f4; border: 1px solid #ddd; margin-bottom: 1.5rem; }
.mmd-theme-detail { display: flex; padding: 0.65rem 1rem; border-bottom: 1px solid #e0ddd6; font-size: 0.88rem; }
.mmd-theme-detail:last-child { border-bottom: none; }
.mmd-theme-detail__label { font-weight: 700; color: #111; flex: 0 0 120px; }
.mmd-theme-detail__value { color: #555; }
.mmd-theme-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.mmd-theme-sidebar__poster { margin-bottom: 1.25rem; }
.mmd-theme-sidebar__poster img { width: 100%; border: 1px solid #ddd; }
.mmd-theme-sidebar__box { background: #1a1a1a; padding: 1.25rem; margin-bottom: 1rem; }
.mmd-theme-sidebar__box h4 { font-family: var(--mmd-font-display); font-size: 1rem; font-weight: 400; color: #fff; margin-bottom: 0.5rem; }
.mmd-theme-sidebar__box p { font-size: 0.85rem; color: #aaa; margin-bottom: 0.75rem; }
.mmd-theme-sidebar__phone { display: block; background: var(--mmd-accent); color: #fff; text-align: center; padding: 0.65rem; font-family: var(--mmd-font-heading); font-size: 1rem; font-weight: 700; }
.mmd-theme-sidebar__phone:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.mmd-theme-sidebar__back { display: block; font-size: 0.85rem; color: var(--mmd-accent); text-align: center; padding: 0.5rem; }
.mmd-theme-sidebar__back:hover { text-decoration: underline; }
.mmd-theme-related { padding: 2rem; border-top: 1px solid #e0ddd6; }
.mmd-theme-related__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 1.25rem; }

/* =============================================================================
   PRIVATE EVENTS
   ============================================================================= */
.mmd-private-hero { padding: 2rem; }
.mmd-private-hero__inner { margin: 0 auto; align-items: center; max-width: 900px; }
.mmd-private-hero__form { flex: 1; }
.mmd-private-hero__form h1 { font-family: var(--mmd-font-display); font-size: 1.4rem; font-weight: 400; color: #111; margin-bottom: 1rem; }
.mmd-private-hero__tagline { font-size: 0.95rem; color: #555; margin-bottom: 1.5rem; line-height: 1.6; }
.mmd-private-hero__image img { width: 80%; padding-bottom: 1rem; margin: 0 auto; display: block; }
.mmd-private-intro { padding: 0 2rem 1.5rem; text-align: center; }
.mmd-private-intro p { font-size: 1rem; color: #333; max-width: 700px; margin: 0 auto; }
.mmd-steps { background: var(--mmd-dark); padding: 2rem; }
.mmd-steps__inner { text-align: center; }
.mmd-steps__eyebrow { color: var(--mmd-accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.mmd-steps__heading { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; }
.mmd-steps__subheading { color: #aaa; font-size: 0.9rem; font-weight: 400; margin-bottom: 2rem; }
.mmd-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; }
.mmd-step { display: flex; gap: 1rem; align-items: flex-start; }
.mmd-step__number { background: var(--mmd-accent); color: #fff; font-size: 1.3rem; font-weight: 700; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mmd-step__content h4 { color: #fff; margin-bottom: 0.4rem; font-size: 1rem; }
.mmd-step__content p { color: #aaa; font-size: 0.9rem; }
.mmd-private-about { padding: 2rem; }
.mmd-private-about__block { display: flex; gap: 2rem; align-items: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #eee; }
.mmd-private-about__block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mmd-private-about__block--reverse { flex-direction: row-reverse; }
.mmd-private-about__content { flex: 1; }
.mmd-private-about__content h2 { color: var(--mmd-accent); margin-bottom: 0.75rem; font-size: 1.3rem; }
.mmd-private-about__content p { color: #333; font-size: 0.95rem; }
.mmd-private-about__image { flex: 0 0 300px; }
.mmd-private-about__image img { width: 100%; }
.mmd-private-occasions { padding: 2rem; }
.mmd-private-occasions__inner h2 { font-family: var(--mmd-font-display); font-size: 1.4rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.5rem; }
.mmd-private-occasions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.mmd-private-occasion { background: #fff; border: 1px solid #ddd; padding: 1.25rem; }
.mmd-private-occasion__icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.mmd-private-occasion h3 { font-family: var(--mmd-font-heading); font-size: 0.95rem; font-weight: 700; color: var(--mmd-accent); margin-bottom: 0.4rem; }
.mmd-private-occasion p { font-size: 0.85rem; color: #555; margin: 0; line-height: 1.6; }
.mmd-private-venues { padding: 2rem; background: #f9f8f4; border-top: 1px solid #e0ddd6; }
.mmd-private-venues__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-private-venues__inner p { color: #444; font-size: 0.95rem; }
.mmd-private-venues__types, .mmd-private-venues__list { margin-top: 0.75rem; font-size: 0.9rem; color: #555; padding: 0.75rem 1rem; background: #fff; border: 1px solid #ddd; border-left: 3px solid var(--mmd-accent); }
.mmd-private-venues__types strong, .mmd-private-venues__list strong { color: #111; display: block; margin-bottom: 0.3rem; }
.mmd-private-themes { padding: 2rem; border-top: 1px solid #e0ddd6; }
.mmd-private-themes__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-private-themes__inner p { color: #444; font-size: 0.95rem; margin-bottom: 1rem; }
.mmd-private-themes__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.mmd-private-whyus { padding: 2rem; background: #1a1a1a; border-top: 1px solid #333; }
.mmd-private-whyus__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #fff; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-private-whyus__inner > p { color: #aaa; font-size: 0.95rem; margin-bottom: 1.5rem; }
.mmd-private-whyus__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mmd-private-whyus__item { background: #222; border: 1px solid #333; padding: 1.25rem; }
.mmd-private-whyus__item h4 { font-family: var(--mmd-font-heading); font-size: 0.9rem; font-weight: 700; color: var(--mmd-accent); margin-bottom: 0.4rem; }
.mmd-private-whyus__item p { font-size: 0.82rem; color: #aaa; margin: 0; line-height: 1.6; }
.mmd-private-testimonials { padding: 2rem; border-top: 1px solid #e0ddd6; }
.mmd-private-testimonials__inner h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 1rem; }
.mmd-private-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.mmd-private-companies { padding: 1rem 2rem 1.5rem; text-align: center; border-top: 1px solid #e0ddd6; }
.mmd-private-companies h3 { font-family: var(--mmd-font-heading); font-size: 0.95rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.mmd-private-cta { padding: 2rem; background: #f9f8f4; border-top: 1px solid #e0ddd6; text-align: center; }
.mmd-private-cta__inner h2 { font-family: var(--mmd-font-display); font-size: 1.3rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.75rem; }
.mmd-private-cta__inner p { color: #444; font-size: 0.95rem; margin-bottom: 1.5rem; }
.mmd-private-cta__inner a.mmd-btn { display: inline-block; }

/* =============================================================================
   PUBLIC SHOWS
   ============================================================================= */
.mmd-venue-info { padding: 0 2rem 1.5rem; }
.mmd-venue-info__inner { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid #ddd; background: #fff; }
.mmd-venue-info__item { display: flex; flex-direction: column; padding: 0.9rem 1.5rem; border-right: 1px solid #ddd; flex: 1; min-width: 200px; }
.mmd-venue-info__item:last-child { border-right: none; }
.mmd-venue-info__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 0.25rem; }
.mmd-venue-info__value { font-size: 0.95rem; color: #111; font-weight: 600; }
a.mmd-venue-info__value { color: var(--mmd-accent); }
a.mmd-venue-info__value:hover { text-decoration: underline; }
.mmd-public-shows { padding: 0 2rem 1.5rem; }
.mmd-public-shows__empty { text-align: center; padding: 3rem; background: #fff; border: 1px solid #ddd; color: #555; }
.mmd-shows-faq-teaser { padding: 1.5rem 2rem; text-align: center; border-top: 1px solid #e0ddd6; }
.mmd-shows-faq-teaser h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; margin-bottom: 0.5rem; }
.mmd-shows-faq-teaser p { color: #555; font-size: 0.95rem; }
.mmd-shows-faq-teaser a { color: var(--mmd-accent); }
.mmd-public-what-to-expect { padding: 1.5rem 2rem; }
.mmd-public-expect__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.mmd-public-expect__item { background: #fff; border: 1px solid #ddd; padding: 1.25rem; text-align: center; }
.mmd-public-expect__icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.mmd-public-expect__item h4 { font-family: var(--mmd-font-heading); font-size: 0.9rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.mmd-public-expect__item p { font-size: 0.82rem; color: #555; margin: 0; }
.mmd-public-expect__ideal { background: #f9f8f4; border-left: 3px solid var(--mmd-accent); padding: 0.75rem 1rem; font-size: 0.9rem; color: #444; }
.mmd-public-expect__ideal strong { color: #111; }
.mmd-venue-section { padding: 1.5rem 2rem; border-top: 1px solid #e0ddd6; }
.mmd-venue-section__info h2 { font-family: var(--mmd-font-display); font-size: 1.3rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 0.4rem; }
.mmd-venue-section__address { font-size: 0.9rem; margin-bottom: 0.5rem; }
.mmd-venue-section__address a { color: var(--mmd-accent); }
.mmd-venue-section__desc { font-size: 0.9rem; color: #444; margin-bottom: 0.5rem; }
.mmd-venue-section__parking { font-size: 0.85rem; color: #666; }
.mmd-venue-section__parking strong { color: #111; }
.mmd-venue-section__no-widget { background: #f9f8f4; border: 1px solid #ddd; padding: 1.5rem; text-align: center; color: #555; font-size: 0.9rem; }
.mmd-venue-section__no-widget a { color: var(--mmd-accent); }
.mmd-public-good-to-know { padding: 1.5rem 2rem; background: #f9f8f4; border-top: 1px solid #e0ddd6; }
.mmd-public-good-to-know h2 { font-family: var(--mmd-font-display); font-size: 1.2rem; font-weight: 400; color: #111; text-transform: uppercase; margin-bottom: 1rem; }
.mmd-good-to-know__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mmd-good-to-know__item { background: #fff; border: 1px solid #ddd; padding: 1rem; }
.mmd-good-to-know__item h4 { font-family: var(--mmd-font-heading); font-size: 0.88rem; font-weight: 700; color: var(--mmd-accent); margin-bottom: 0.4rem; }
.mmd-good-to-know__item p { font-size: 0.82rem; color: #555; margin: 0; }

/* =============================================================================
   EVENTBRITE
   ============================================================================= */
.mmd-eb-events { display: flex; flex-direction: column; gap: 0; }
.mmd-eb-event { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: #fff; border: 1px solid #ddd; border-top: none; }
.mmd-eb-event:first-child { border-top: 1px solid #ddd; }
.mmd-eb-event:nth-child(even) { background: #fafafa; }
.mmd-eb-event__poster { flex: 0 0 80px; }
.mmd-eb-event__poster img { width: 80px; height: 80px; object-fit: cover; border: 1px solid #ddd; }
.mmd-eb-event__info { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.mmd-eb-event__name { font-weight: 700; font-size: 0.9rem; color: #111; }
.mmd-eb-event__date { font-size: 0.9rem; color: #333; font-weight: 600; }
.mmd-eb-event__time { color: #666; font-weight: 400; }
.mmd-eb-event__venue { font-size: 0.82rem; color: #888; }
.mmd-eb-event__ticket-type { font-size: 0.78rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.05em; }
.mmd-eb-event__action { flex: 0 0 auto; }
.mmd-eb-event__buy { background: var(--mmd-accent); color: #fff; border: none; padding: 0.6rem 1.25rem; font-family: var(--mmd-font-heading); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; transition: opacity 0.2s; }
.mmd-eb-event__buy:hover { opacity: 0.85; }
.mmd-eb-event__soldout { font-size: 0.82rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.04em; }
.mmd-eb-no-shows { background: #f9f8f4; border: 1px solid #ddd; padding: 2rem; text-align: center; color: #555; }
.mmd-eb-no-shows p { color: #555; margin-bottom: 0.5rem; }
.mmd-eb-no-shows a { color: var(--mmd-accent); }

/* =============================================================================
   BLOG
   ============================================================================= */
.mmd-blog-archive { padding: 0 2rem 2rem; }
.mmd-blog-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid #ddd; }
.mmd-blog-cat { display: inline-block; padding: 0.35rem 0.9rem; background: #FFFABE; border: 1px solid #ccc; color: #111; font-family: var(--mmd-font-display); font-size: 0.85rem; border-radius: 3px; transition: background 0.15s; }
.mmd-blog-cat:hover { background: #F0E868; text-decoration: none; color: #111; }
.mmd-blog-cat--active { background: var(--mmd-accent); border-color: var(--mmd-accent); color: #fff; }
.mmd-blog-cat--active:hover { background: var(--mmd-accent); color: #fff; }
.mmd-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mmd-blog-card { background: #fff; border: 1px solid #ddd; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.mmd-blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateY(-2px); }
.mmd-blog-card__image { display: block; overflow: hidden; aspect-ratio: 16/9; }
.mmd-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.mmd-blog-card:hover .mmd-blog-card__image img { transform: scale(1.04); }
.mmd-blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.mmd-blog-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.mmd-blog-card__cat { background: var(--mmd-accent); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 2px; }
.mmd-blog-card__cat:hover { text-decoration: none; opacity: 0.85; }
.mmd-blog-card__date { font-size: 0.78rem; color: #888; }
.mmd-blog-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.3; }
.mmd-blog-card__title a { color: #111; }
.mmd-blog-card__title a:hover { color: var(--mmd-accent); text-decoration: none; }
.mmd-blog-card__excerpt { font-size: 0.88rem; color: #555; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.mmd-blog-card__excerpt p { margin: 0; color: #555; font-size: 0.88rem; }
.mmd-blog-card__more { font-size: 0.85rem; font-weight: 700; color: var(--mmd-accent); text-transform: uppercase; letter-spacing: 0.03em; margin-top: auto; }
.mmd-blog-card__more:hover { text-decoration: underline; }
.mmd-blog-empty { text-align: center; padding: 3rem 0; color: #666; font-style: italic; }
.mmd-pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.mmd-pagination .nav-links { display: flex; gap: 0.4rem; align-items: center; }
.mmd-pagination .page-numbers { display: inline-block; padding: 0.5rem 0.9rem; background: #FFFABE; border: 1px solid #ccc; color: #111; font-family: var(--mmd-font-display); font-size: 0.9rem; transition: background 0.15s; }
.mmd-pagination .page-numbers:hover { background: #F0E868; text-decoration: none; }
.mmd-pagination .page-numbers.current { background: var(--mmd-accent); border-color: var(--mmd-accent); color: #fff; }
.mmd-pagination .page-numbers.dots { background: transparent; border: none; }

/* Single post */
.mmd-post-header { padding: 2rem 2rem 1rem; }
.mmd-post-header__inner { max-width: 800px; margin: 0 auto; }
.mmd-post-header__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.mmd-post-header__cat { background: var(--mmd-accent); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 2px; }
.mmd-post-header__cat:hover { text-decoration: none; opacity: 0.85; }
.mmd-post-header__date { font-size: 0.82rem; color: #888; }
.mmd-post-header__updated { font-size: 0.78rem; color: #888; font-style: italic; }
.mmd-post-header__reading-time { font-size: 0.78rem; color: #888; font-style: italic; }
.mmd-post-header__title { font-family: var(--mmd-font-display); font-size: 1.8rem; font-weight: 400; color: #111; line-height: 1.3; }
.mmd-post-featured-image { padding: 0 2rem 1.5rem; max-width: 860px; margin: 0 auto; }
.mmd-post-featured-image__img { width: 100%; max-height: 480px; object-fit: cover; }
.mmd-post-content { padding: 0 2rem 2rem; }
.mmd-post-content__inner { max-width: 800px; margin: 0 auto; }
.mmd-post-content__inner p { color: #333; font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.mmd-post-content__inner h2 { font-family: var(--mmd-font-display); font-size: 1.4rem; font-weight: 400; color: #111; margin: 2rem 0 0.75rem; text-transform: uppercase; }
.mmd-post-content__inner h3 { font-size: 1.1rem; font-weight: 700; color: #111; margin: 1.5rem 0 0.5rem; }
.mmd-post-content__inner ul, .mmd-post-content__inner ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: #333; }
.mmd-post-content__inner ul { list-style: disc; }
.mmd-post-content__inner ol { list-style: decimal; }
.mmd-post-content__inner li { margin-bottom: 0.4rem; line-height: 1.7; }
.mmd-post-content__inner a { color: var(--mmd-accent); }
.mmd-post-content__inner a:hover { text-decoration: underline; }
.mmd-post-content__inner blockquote { border-left: 4px solid var(--mmd-accent); padding: 0.75rem 1.25rem; margin: 1.5rem 0; background: #f9f9f9; font-style: italic; color: #555; }
.mmd-post-footer { padding: 0 2rem 2rem; }
.mmd-post-footer__inner { max-width: 800px; margin: 0 auto; padding-top: 1.5rem; border-top: 2px solid #ddd; }
.mmd-post-footer__cats { font-size: 0.85rem; color: #666; margin-bottom: 1.5rem; }
.mmd-post-footer__cats span { margin-right: 0.4rem; }
.mmd-post-footer__cats a { color: var(--mmd-accent); margin-right: 0.4rem; }
.mmd-post-footer__cats a:hover { text-decoration: underline; }
.mmd-post-nav { display: flex; justify-content: space-between; gap: 1rem; }
.mmd-post-nav__prev, .mmd-post-nav__next { font-size: 0.85rem; font-weight: 700; color: var(--mmd-accent); max-width: 48%; line-height: 1.4; }
.mmd-post-nav__next { text-align: right; margin-left: auto; }
.mmd-post-nav__prev:hover, .mmd-post-nav__next:hover { text-decoration: underline; }
.mmd-breadcrumb { padding: 0.75rem 2rem; border-bottom: 1px solid #e0ddd6; }
.mmd-breadcrumb__list { display: flex; flex-wrap: wrap; gap: 0.25rem; list-style: none; font-size: 0.8rem; color: #888; }
.mmd-breadcrumb__list li::after { content: ' ›'; margin-left: 0.25rem; color: #bbb; }
.mmd-breadcrumb__list li:last-child::after { content: ''; }
.mmd-breadcrumb__list a { color: var(--mmd-accent); }
.mmd-breadcrumb__list a:hover { text-decoration: underline; }
.mmd-breadcrumb__list [aria-current="page"] { color: #666; }
.mmd-author-bio { padding: 0 2rem 2rem; }
.mmd-author-bio__inner { max-width: 800px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: flex-start; background: #f9f8f4; border: 1px solid #e0ddd6; padding: 1.5rem; }
.mmd-author-bio__avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.mmd-author-bio__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 0.2rem; }
.mmd-author-bio__name { display: block; font-family: var(--mmd-font-display); font-size: 1.1rem; color: #111; margin-bottom: 0.5rem; }
.mmd-author-bio__name:hover { text-decoration: underline; }
.mmd-author-bio__text { font-size: 0.88rem; color: #555; line-height: 1.7; margin: 0; }

/* =============================================================================
   POPUP
   ============================================================================= */
.mmd-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.mmd-popup__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.mmd-popup__modal { position: relative; z-index: 2; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.mmd-popup__close { position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: #888; padding: 0.25rem 0.5rem; z-index: 3; }
.mmd-popup__close:hover { color: #111; }
.mmd-popup__heading { font-family: var(--mmd-font-display); font-weight: 400; text-align: center; margin-bottom: 0.4rem; line-height: 1.2; padding-right: 2rem; }
.mmd-popup__subheading { text-align: center; font-size: 0.9rem; color: #666; margin-bottom: 1.25rem; }
.mmd-popup__form .mmd-form__field label span { color: var(--mmd-accent); }
.mmd-popup__submit { display: block; width: 100%; padding: 0.9rem; font-family: var(--mmd-font-display); font-size: 1.1rem; font-weight: 400; border: none; cursor: pointer; margin-top: 0.75rem; transition: opacity 0.2s; text-align: center; letter-spacing: 0.03em; }
.mmd-popup__submit:hover { opacity: 0.85; }
.mmd-popup__bottom-image { margin-top: 1rem; text-align: center; }
.mmd-popup__bottom-image img { max-width: 100%; height: auto; margin: 0 auto; }
.mmd-popup__choices { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.mmd-popup__choice { display: flex; flex-direction: column; padding: 1.25rem 1.5rem; text-decoration: none; transition: opacity 0.2s, transform 0.15s; border-radius: 2px; }
.mmd-popup__choice:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
.mmd-popup__choice-label { font-family: var(--mmd-font-display); font-size: 1.1rem; color: #fff; display: block; margin-bottom: 0.3rem; }
.mmd-popup__choice-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); display: block; }
.mmd-popup__top-image { margin: -2rem -2rem 1.25rem; overflow: hidden; }
.mmd-popup__top-image img { width: 100%; max-height: 200px; object-fit: cover; display: block; }
.mmd-popup__content-body { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 1.25rem; }
.mmd-popup__content-body p { color: #444; }
.mmd-popup__content-btn { display: block; width: 100%; padding: 0.9rem; text-align: center; font-family: var(--mmd-font-display); font-size: 1.1rem; font-weight: 400; border-radius: 2px; transition: opacity 0.2s; }
.mmd-popup__content-btn:hover { opacity: 0.85; text-decoration: none; color: inherit; }

/* =============================================================================
   PAPER BOTTOM TEAR + FOOTER
   ============================================================================= */
.mmd-paper-bottom { background: url('../images/paper-bottom.png') center top no-repeat; background-size: 100% auto; height: 150px; width: 90%; max-width: 1006px; margin: 0 auto -130px; position: relative; z-index: 2; pointer-events: none; }
.mmd-footer { background: transparent; padding: 0 0 2rem; width: 90%; max-width: 800px; margin: 0 auto; position: relative; z-index: 3; }
.mmd-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 0.5rem; }
.mmd-footer__left { display: flex; flex-direction: column; gap: 0.2rem; }
.mmd-footer__site-name { font-family: var(--mmd-font-display); font-size: 0.95rem; color: #aaa; text-decoration: none; }
.mmd-footer__site-name:hover { color: #fff; text-decoration: none; }
.mmd-footer__address { font-size: 0.8rem; color: #666; margin: 0; }
.mmd-footer__right { display: flex; align-items: center; gap: 0.5rem; }
.mmd-footer__sitemap-btn { display: inline-block; background: #2c2c2c; color: #fff; padding: 0.5rem 1.25rem; font-family: var(--mmd-font-heading); font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: background 0.15s; }
.mmd-footer__sitemap-btn:hover { background: #444; text-decoration: none; color: #fff; }
.mmd-footer__phone-btn { display: inline-block; background: var(--mmd-accent); color: #fff; padding: 0.5rem 1.25rem; font-family: var(--mmd-font-heading); font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: opacity 0.15s; }
.mmd-footer__phone-btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }

/* =============================================================================
   RESPONSIVE — TABLET 900px
   ============================================================================= */
@media ( max-width: 900px ) {
    .mmd-home-top__inner { flex-direction: column; }
    .mmd-about__cols { flex-direction: column; }
    .mmd-about__cols .mmd-slideshow { flex: 0 0 auto; width: 100%; }
    .mmd-virtual__inner { flex-direction: column; }
    .mmd-private-hero__inner { flex-direction: column; }
    .mmd-private-hero__image { flex: 0 0 auto; width: 100%; }
    .mmd-private-about__block, .mmd-private-about__block--reverse { flex-direction: column; }
    .mmd-private-about__image { flex: 0 0 auto; width: 100%; }
    .mmd-steps__grid { grid-template-columns: 1fr; }
    .mmd-themes__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-hero-split__cols { grid-template-columns: 1fr; }
    .mmd-home-public__cols { grid-template-columns: 1fr; }
    .mmd-home-occasions__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-home-corporate__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-whyus__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-themes-preview__grid { grid-template-columns: repeat(3, 1fr); }
    .mmd-reviews__grid { grid-template-columns: 1fr; }
    .mmd-private-occasions__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-private-whyus__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-private-testimonials__grid { grid-template-columns: 1fr; }
    .mmd-private-themes__grid { grid-template-columns: repeat(3, 1fr); }
    .mmd-public-expect__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-good-to-know__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-theme-content__inner { grid-template-columns: 1fr; }
    .mmd-theme-content__sidebar { order: -1; }
    .mmd-theme-sidebar__poster { display: none; }
}

/* =============================================================================
   RESPONSIVE — MOBILE 768px (hamburger activates)
   ============================================================================= */
@media ( max-width: 768px ) {
    /* Site wrapper */
    .mmd-site-top { max-width: 100%; position: relative; }
    .mmd-main { max-width: 100%; padding: 1.5rem 1rem 3rem 1.5rem; }

    /* Header */
    .mmd-header__top { padding: 0.75rem 1rem; position: relative; display: flex; align-items: center; justify-content: space-between; }
    .mmd-header__wordmark { position: static; transform: none; flex: 0 0 auto; }
    .mmd-header__wordmark img { height: 50px; }
    .mmd-header__right { margin-left: auto; }
    .mmd-header__phone-number { font-size: 1.25rem; }
    .mmd-header__phone-label { font-size: 0.68rem; }
    .mmd-header__phone-status { font-size: 0.68rem; }

    /* Nav — hamburger */
    .mmd-nav-wrap { position: relative; margin-bottom: 0; min-height: 44px; }
    .mmd-nav__hamburger { display: flex; }
    .mmd-nav { background: none; height: auto; min-height: 44px; }
    .mmd-nav__list { display: none; position: absolute; top: 44px; left: 0; right: 0; background: #FFFABE; border: 1px solid #ccc; border-top: none; z-index: 250; flex-direction: column; gap: 0; padding: 0; align-items: stretch; }
    .mmd-nav__list.is-open { display: flex; }
    .mmd-nav__item { border-radius: 0; border-bottom: 1px solid #ddd; margin-bottom: 0 !important; }
    .mmd-nav__item:last-child { border-bottom: none; }
    .mmd-nav__item > a { font-size: 0.9rem; padding: 0.75rem 1rem; display: block; white-space: normal; }
    .mmd-nav__dropdown { position: static; display: none; border: none; border-top: 1px solid #ddd; background: #F5F3C8; min-width: 0; }
    .mmd-nav__item--has-dropdown:hover .mmd-nav__dropdown { display: none; }
    .mmd-nav__item--has-dropdown.is-dropdown-open .mmd-nav__dropdown { display: block; }
    .mmd-nav__dropdown li a { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

    /* Typography */
    .mmd-hero-split__h1 { font-size: 0.85rem; letter-spacing: 0.02em; }
    .mmd-hero-split__h2 { font-size: 0.85rem; }
    .mmd-home-section h2 { font-size: 1rem; }
    .mmd-page-header h1 { font-size: 1rem; }
    .mmd-private-occasions__inner h2, .mmd-private-venues__inner h2, .mmd-private-themes__inner h2,
    .mmd-private-whyus__inner h2, .mmd-private-testimonials__inner h2, .mmd-private-cta__inner h2,
    .mmd-themes-cta__inner h2, .mmd-theme-hero__content h1, .mmd-theme-related__inner h2,
    .mmd-public-good-to-know h2, .mmd-venue-section__info h2, .mmd-shows-faq-teaser h2,
    .mmd-about__heading h2, .mmd-virtual__text h3, .mmd-lead-form h2, .mmd-post-header__title { font-size: 1rem; }
    .mmd-steps__heading { font-size: 1.2rem; }

    /* Section padding */
    .mmd-home-section { padding: 1.25rem 1rem; }
    .mmd-hero-split { padding: 1rem 1rem 0; }
    .mmd-blog-archive, .mmd-faq, .mmd-themes { padding: 0 1rem 1.5rem; }
    .mmd-private-hero, .mmd-private-occasions, .mmd-private-venues, .mmd-private-themes,
    .mmd-private-whyus, .mmd-private-testimonials, .mmd-private-cta { padding: 1rem; }
    .mmd-public-what-to-expect, .mmd-venue-section, .mmd-public-good-to-know { padding: 1rem; }
    .mmd-theme-content, .mmd-theme-related { padding: 1rem; }
    .mmd-lead-form__inner { padding: 0 1rem; }
    .mmd-page-header { padding: 1.25rem 1rem 1rem; }
    .mmd-post-header { padding: 1.25rem 1rem 0.75rem; }
    .mmd-post-content { padding: 0 1rem 1.5rem; }
    .mmd-post-footer { padding: 0 1rem 1.5rem; }
    .mmd-author-bio { padding: 0 1rem 1.5rem; }
    .mmd-breadcrumb { padding: 0.5rem 1rem; }
    .mmd-steps { padding: 1.5rem 1rem; }
    .mmd-about, .mmd-booking, .mmd-virtual { padding: 1rem; }
    .mmd-clients, .mmd-testimonials { padding: 0.75rem 1rem; }
    .mmd-shows-cta { padding: 1rem; }
    .mmd-venue-info { padding: 0 1rem 1rem; }
    .mmd-public-shows { padding: 0 1rem 1rem; }
    .mmd-shows-faq-teaser, .mmd-themes-cta { padding: 1rem; }

    /* Grids */
    .mmd-themes__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .mmd-blog-grid { grid-template-columns: 1fr; }
    .mmd-home-occasions__grid, .mmd-home-corporate__grid, .mmd-whyus__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .mmd-themes-preview__grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .mmd-private-occasions__grid, .mmd-private-whyus__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .mmd-private-themes__grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .mmd-public-expect__grid, .mmd-good-to-know__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .mmd-reviews__grid { grid-template-columns: 1fr; }

    /* Forms */
    .mmd-form__row { flex-direction: column; gap: 0; }

    /* Misc */
    .mmd-hero-split__col-inner { padding: 1rem; }
    .mmd-post-nav { flex-direction: column; }
    .mmd-post-nav__next { text-align: left; margin-left: 0; }
    .mmd-author-bio__inner { flex-direction: column; }
    .mmd-author-bio__avatar { width: 60px; height: 60px; }
    .mmd-themes-cta__btns { flex-direction: column; align-items: stretch; }
    .mmd-theme-ctas { flex-direction: column; }
    .mmd-venue-info__inner { flex-direction: column; }
    .mmd-venue-info__item { border-right: none; border-bottom: 1px solid #ddd; }
    .mmd-venue-info__item:last-child { border-bottom: none; }
    .mmd-eb-event { flex-wrap: wrap; }
    .mmd-eb-event__poster { flex: 0 0 60px; }
    .mmd-eb-event__action { width: 100%; }
    .mmd-eb-event__buy { width: 100%; text-align: center; }
    .mmd-footer__inner { flex-direction: column; align-items: flex-start; }
    .mmd-footer { max-width: 100%; padding: 0 1rem 2rem; }
    .mmd-paper-bottom { max-width: 100%; }
    .mmd-popup__modal { padding: 1.5rem 1rem; }
    .mmd-popup .mmd-form__row { flex-direction: column; gap: 0; }
}

/* =============================================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================================= */
@media ( max-width: 480px ) {
    .mmd-home-occasions__grid, .mmd-home-corporate__grid, .mmd-whyus__grid { grid-template-columns: 1fr; }
    .mmd-private-occasions__grid, .mmd-private-whyus__grid { grid-template-columns: 1fr; }
    .mmd-public-expect__grid, .mmd-good-to-know__grid { grid-template-columns: 1fr; }
    .mmd-themes__grid { grid-template-columns: 1fr; }
    .mmd-themes-preview__grid, .mmd-private-themes__grid { grid-template-columns: repeat(2, 1fr); }
    .mmd-header__phone-number { font-size: 1.1rem; }
    .mmd-header__wordmark img { height: 42px; }
}