/* ============================================================
   Marque and Muse — Main Stylesheet v1.0
   Design: "Gilded Stage" — Art Deco Revival
   Palette: Deep Plum · Antique Gold · Soft Blush Nude
   Fonts: Cormorant Garamond (display) · Lato (body)
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --plum-dark:   #2a1a2e;
  --plum-mid:    #4a2d5a;
  --plum-light:  #6b4080;
  --plum-pale:   #8a5a9a;
  --gold:        #c9a84c;
  --gold-light:  #e0c070;
  --gold-pale:   #f0dfa0;
  --blush:       #f5ede8;
  --blush-mid:   #e8d8d0;
  --blush-dark:  #c8a898;
  --white:       #ffffff;
  --text-muted:  #9a8090;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --transition:   all 0.28s var(--ease-out);
  --radius-sm:    4px;
  --radius-md:    8px;
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.18);
  --shadow-plum:  0 8px 40px rgba(42,26,46,0.35);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--plum-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.mm-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .mm-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .mm-container { padding: 0 2.5rem; } }

/* ── Typography Utilities ── */
.mm-section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.mm-section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--plum-dark);
  margin-top: 0.5rem;
}
.mm-section-heading--light { color: var(--blush); }
.mm-section-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 1rem auto 0;
}
.mm-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.mm-body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.mm-body-text--muted { color: var(--blush-dark); }
.mm-text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mm-text-link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  margin-top: 0.5rem;
}
.mm-text-link--arrow:hover { gap: 0.7rem; opacity: 0.8; }

/* ── Buttons ── */
.mm-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mm-btn:active { transform: scale(0.97); }
.mm-btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--plum-dark);
  border: 1px solid var(--gold);
}
.mm-btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}
.mm-btn--ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
}
.mm-btn--ghost-gold:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.mm-btn--ghost-plum {
  background: transparent;
  color: var(--plum-mid);
  border: 1px solid rgba(74,45,90,0.4);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  padding: 0.7rem 1.6rem;
}
.mm-btn--ghost-plum:hover {
  background: rgba(74,45,90,0.06);
  border-color: var(--plum-mid);
}
.mm-btn--full { width: 100%; }

/* ── Decorative Elements ── */
.mm-deco-divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.9rem 0 1.4rem;
}
.mm-deco-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.mm-deco-divider__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
  flex-shrink: 0;
}
.mm-deco-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0 0;
}
.mm-deco-rule__line {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.mm-deco-rule__diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}
.mm-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 0;
}

/* ── Scroll Reveal ── */
.mm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.mm-reveal.mm-revealed {
  opacity: 1;
  transform: translateY(0);
}
.mm-reveal--delay-100 { transition-delay: 0.10s; }
.mm-reveal--delay-200 { transition-delay: 0.20s; }
.mm-reveal--delay-300 { transition-delay: 0.30s; }
.mm-reveal--delay-400 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .mm-reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.mm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(42,26,46,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.mm-nav.mm-nav--scrolled {
  background: rgba(42,26,46,0.97);
  border-bottom-color: rgba(201,168,76,0.2);
}
.mm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
@media (min-width: 1024px) { .mm-nav__inner { height: 80px; } }
.mm-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mm-nav__logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(201,168,76,0.3));
}
.mm-nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.mm-nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mm-nav__logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.42rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-top: 0.2rem;
}
.mm-nav__links {
  display: none;
  align-items: center;
  gap: 1.8rem;
}
@media (min-width: 1024px) { .mm-nav__links { display: flex; } }
.mm-nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  opacity: 0.75;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.mm-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.mm-nav__link:hover { opacity: 1; color: var(--gold); }
.mm-nav__link:hover::after { width: 100%; }
.mm-nav__cta { margin-left: 0.5rem; font-size: 0.6rem; padding: 0.6rem 1.4rem; }
.mm-nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .mm-nav__toggle { display: none; } }
.mm-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.mm-nav--open .mm-nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mm-nav--open .mm-nav__toggle-bar:nth-child(2) { opacity: 0; }
.mm-nav--open .mm-nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mm-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(42,26,46,0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.mm-mobile-menu.mm-mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}
.mm-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mm-mobile-menu__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.mm-mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--blush);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mm-mobile-menu__link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.mm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #2a1a2e;
  overflow: hidden;
}
.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,26,46,0.72) 0%,
    rgba(42,26,46,0.55) 40%,
    rgba(42,26,46,0.75) 100%
  );
}
.mm-hero__corner {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 2;
}
.mm-hero__corner--tl { top: 1.5rem; left: 1.5rem; }
.mm-hero__corner--tr { top: 1.5rem; right: 1.5rem; transform: scaleX(-1); }
.mm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 900px;
}
.mm-hero__label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mm-hero__rule {
  width: 2rem;
  height: 1px;
  background: rgba(201,168,76,0.6);
}
.mm-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.05;
  color: var(--blush);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(42,26,46,0.85), 0 1px 4px rgba(42,26,46,0.9);
}
.mm-hero__subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(245,237,232,0.82);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.mm-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.mm-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(201,168,76,0.6);
  transition: var(--transition);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.mm-hero__scroll:hover { color: var(--gold); }
.mm-hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.mm-about {
  padding: 6rem 0;
  background: var(--blush);
}
.mm-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .mm-about__inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.mm-about__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 1.5rem;
}
.mm-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mm-stat-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  text-align: center;
  overflow: hidden;
}
.mm-stat-card--dark { background: var(--plum-mid); }
.mm-stat-card--light { background: var(--blush-mid); }
.mm-stat-card__corner {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 18px; height: 18px;
  border-top: 1px solid rgba(201,168,76,0.4);
  border-right: 1px solid rgba(201,168,76,0.4);
}
.mm-stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.mm-stat-card--dark .mm-stat-card__value {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mm-stat-card--light .mm-stat-card__value { color: var(--plum-mid); }
.mm-stat-card__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}
.mm-stat-card--dark .mm-stat-card__label { color: rgba(245,237,232,0.6); }
.mm-stat-card--light .mm-stat-card__label { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.mm-services {
  padding: 6rem 0;
  background: var(--plum-dark);
}
.mm-services .mm-section-label { color: var(--gold); }
.mm-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .mm-services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mm-services__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.mm-service-card {
  position: relative;
  background: rgba(74,45,90,0.5);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  overflow: hidden;
}
.mm-service-card:hover {
  background: rgba(74,45,90,0.8);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.mm-service-card__top-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.mm-service-card:hover .mm-service-card__top-rule { opacity: 1; }
.mm-service-card__numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 3.5rem;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 0.5rem; right: 1rem;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.mm-service-card:hover .mm-service-card__numeral { color: rgba(201,168,76,0.14); }
.mm-service-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mm-service-card__icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.mm-service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush);
  line-height: 1.2;
}
.mm-service-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: rgba(245,237,232,0.55);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.mm-service-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.mm-process {
  padding: 6rem 0;
  background: var(--blush);
}
.mm-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .mm-process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mm-process__grid { grid-template-columns: repeat(4, 1fr); } }
.mm-process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(74,45,90,0.1);
  transition: var(--transition);
}
.mm-process-step:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.mm-process-step__bg-num {
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 4rem;
  color: rgba(74,45,90,0.05);
  line-height: 1;
  pointer-events: none;
}
.mm-process-step__icon-wrap {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mm-process-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--plum-dark);
  margin-bottom: 0.7rem;
}
.mm-process-step__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTIONS
══════════════════════════════════════════════════════════════ */
.mm-productions {
  padding: 6rem 0;
  background: var(--white);
}
.mm-productions__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .mm-productions__feature { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.mm-productions__feature-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.mm-productions__feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}
.mm-productions__feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.mm-productions__feature-img:hover img { transform: scale(1.04); }
.mm-productions__feature-text { padding: 1rem 0; }
.mm-productions__feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--plum-dark);
  margin: 0.5rem 0 1rem;
}
.mm-productions__feature-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.mm-productions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .mm-productions__grid { grid-template-columns: 1fr 1fr; } }
.mm-productions__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.mm-productions__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.mm-productions__card:hover img { transform: scale(1.06); }
.mm-productions__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,26,46,0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.35s;
}
.mm-productions__card:hover .mm-productions__card-overlay {
  background: linear-gradient(to top, rgba(42,26,46,0.95) 0%, rgba(42,26,46,0.3) 70%);
}
.mm-productions__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--blush);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════════════
   FOUNDER
══════════════════════════════════════════════════════════════ */
.mm-founder {
  padding: 6rem 0;
  background: var(--plum-dark);
  position: relative;
  overflow: hidden;
}
.mm-founder__bg-letter {
  position: absolute;
  top: -2rem; right: -2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22rem;
  color: rgba(201,168,76,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mm-founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .mm-founder__inner { grid-template-columns: 420px 1fr; gap: 5rem; }
}
.mm-founder__portrait-wrap { position: relative; }
.mm-founder__portrait-frame {
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  z-index: 0;
}
.mm-founder__portrait-img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.mm-founder__portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
}
.mm-founder__portrait-img-wrap:hover .mm-founder__portrait-img { transform: scale(1.03); }
.mm-founder__nameplate {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  background: linear-gradient(135deg, rgba(74,45,90,0.95), rgba(42,26,46,0.95));
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 1rem 1.25rem;
  z-index: 2;
}
.mm-founder__nameplate-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush);
  margin-bottom: 0.15rem;
}
.mm-founder__nameplate-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.mm-founder__bio .mm-section-label { color: var(--gold); }
.mm-founder__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--blush);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.mm-founder__bio .mm-body-text { color: rgba(245,237,232,0.65); }
.mm-founder__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.mm-founder__credential {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(245,237,232,0.7);
}
.mm-founder__credential svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.mm-founder__quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  background: rgba(201,168,76,0.05);
}
.mm-founder__quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.mm-founder__quote-cite {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.mm-testimonials {
  padding: 5rem 0;
  background: var(--blush);
  position: relative;
  text-align: center;
}
.mm-testimonials__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.mm-testimonials__rule--top { margin-bottom: 0; }
.mm-testimonials__rule--bottom { margin-top: 0; }
.mm-testimonials__inner { max-width: 720px; margin: 0 auto; padding: 3rem 1rem; }
.mm-testimonials__quote-icon {
  color: rgba(201,168,76,0.4);
  margin: 0 auto 1.5rem;
}
.mm-testimonial { display: none; }
.mm-testimonial--active { display: block; }
.mm-testimonial__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--plum-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.mm-testimonial__author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 0.2rem;
}
.mm-testimonial__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.mm-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.mm-testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(74,45,90,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.mm-testimonials__dot--active,
.mm-testimonials__dot:hover {
  background: var(--gold);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════════
   EVENTS
══════════════════════════════════════════════════════════════ */
.mm-events {
  padding: 6rem 0;
  background: var(--white);
}
.mm-events__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.mm-events__list { display: flex; flex-direction: column; gap: 0; }
.mm-event {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(74,45,90,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.mm-event:first-child { border-top: 1px solid rgba(74,45,90,0.1); }
.mm-event:hover { background: rgba(201,168,76,0.04); padding-left: 0.75rem; padding-right: 0.75rem; margin: 0 -0.75rem; }
.mm-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(74,45,90,0.06);
  padding: 0.6rem 0.5rem;
  border: 1px solid rgba(74,45,90,0.1);
  min-width: 56px;
}
.mm-event__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--plum-dark);
  line-height: 1;
}
.mm-event__month {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}
.mm-event__info { display: flex; flex-direction: column; gap: 0.3rem; }
.mm-event__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum-dark);
  line-height: 1.2;
}
.mm-event__venue {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.mm-event__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.mm-event__status {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-light);
  white-space: nowrap;
}
.mm-event__status--limited { color: #c0614a; }

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
.mm-why-us {
  padding: 6rem 0;
  background: var(--plum-mid);
}
.mm-why-us .mm-section-label { color: var(--gold); }
.mm-why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .mm-why-us__grid { grid-template-columns: repeat(3, 1fr); } }
.mm-pillar {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: rgba(42,26,46,0.4);
  border: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.mm-pillar:hover {
  background: rgba(42,26,46,0.6);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.mm-pillar__corner {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 16px; height: 16px;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-right: 1px solid rgba(201,168,76,0.35);
}
.mm-pillar__icon { color: var(--gold); margin-bottom: 1rem; }
.mm-pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush);
  margin-bottom: 0.7rem;
}
.mm-pillar__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: rgba(245,237,232,0.55);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.mm-contact {
  padding: 6rem 0;
  background: var(--blush);
}
.mm-contact__form-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(74,45,90,0.1);
  padding: 3rem 2rem;
}
@media (min-width: 640px) { .mm-contact__form-wrap { padding: 3.5rem 3rem; } }
.mm-contact__corner {
  position: absolute;
  width: 20px; height: 20px;
}
.mm-contact__corner--tl { top: 0.6rem; left: 0.6rem; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.mm-contact__corner--tr { top: 0.6rem; right: 0.6rem; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.mm-contact__corner--bl { bottom: 0.6rem; left: 0.6rem; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.mm-contact__corner--br { bottom: 0.6rem; right: 0.6rem; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.mm-contact__success {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--plum-mid);
}
.mm-contact__success svg { color: var(--gold); margin: 0 auto 1rem; }
.mm-contact__success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.mm-contact__success p { color: var(--text-muted); font-size: 0.9rem; }

/* Form Elements */
.mm-contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.mm-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 640px) { .mm-form__row { grid-template-columns: 1fr 1fr; } }
.mm-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.mm-form__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-mid);
}
.mm-form__input,
.mm-form__select,
.mm-form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--blush);
  border: 1px solid rgba(74,45,90,0.15);
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--plum-dark);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.mm-form__input::placeholder,
.mm-form__textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.mm-form__input:focus,
.mm-form__select:focus,
.mm-form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.mm-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.mm-form__textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.mm-footer {
  background: var(--plum-dark);
  position: relative;
}
.mm-footer__gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mm-footer__inner { padding: 4rem 0 2rem; }
.mm-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .mm-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mm-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; } }
.mm-footer__logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.mm-footer__logo-icon { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 1px 6px rgba(201,168,76,0.25)); }
.mm-footer__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.mm-footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.44rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}
.mm-footer__rule {
  width: 2.5rem;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin: 0.8rem 0 1rem;
}
.mm-footer__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: rgba(245,237,232,0.45);
  line-height: 1.8;
  max-width: 28ch;
  margin-bottom: 1.2rem;
}
.mm-footer__social { display: flex; gap: 0.6rem; }
.mm-footer__social-link {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.55);
  transition: var(--transition);
}
.mm-footer__social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  transform: translateY(-2px);
}
.mm-footer__col-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mm-footer__list { display: flex; flex-direction: column; gap: 0.55rem; }
.mm-footer__list a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.84rem;
  color: rgba(245,237,232,0.45);
  transition: color 0.2s;
}
.mm-footer__list a:hover { color: rgba(245,237,232,0.85); }
.mm-footer__contact-list { display: flex; flex-direction: column; gap: 0.7rem; }
.mm-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(245,237,232,0.45);
}
.mm-footer__contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.mm-footer__contact-list a { color: rgba(245,237,232,0.45); transition: color 0.2s; }
.mm-footer__contact-list a:hover { color: var(--gold); }
.mm-footer__bottom { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 1.5rem; text-align: center; }
.mm-footer__copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  color: rgba(245,237,232,0.3);
  letter-spacing: 0.08em;
}

/* ── Page Content (non-front-page) ── */
.mm-page-content { padding-top: 8rem; }
.mm-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--plum-dark);
  margin-bottom: 1.5rem;
}
.mm-page-body { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
