:root {
  --mm-red: #c8102e;
  --mm-red-dark: #920d23;
  --mm-black: #111318;
  --mm-charcoal: #272b33;
  --mm-cream: #f7f4ef;
  --mm-soft: #fff9f7;
  --mm-border: #e6e0da;
  --mm-white: #ffffff;
  --mm-shadow: 0 18px 50px rgba(17, 19, 24, .10);
  --mm-radius: 22px;
  --mm-max: 1180px;
}

html { scroll-behavior: smooth; }
body { color: var(--mm-charcoal); }
.entry-content { margin-top: 0; }
.entry-content > *:first-child { margin-top: 0; }

.mm-section,
.gb-container.mm-section {
  padding: clamp(64px, 8vw, 104px) 24px;
  margin: 0;
}
.mm-section--tight,
.gb-container.mm-section--tight { padding-top: 44px; padding-bottom: 44px; }
.mm-section--white { background: var(--mm-white); }
.mm-section--cream { background: var(--mm-cream); }
.mm-section--dark { background: var(--mm-black); color: #fff; }
.mm-section--red { background: linear-gradient(135deg, var(--mm-red), var(--mm-red-dark)); color: #fff; }
.mm-inner,
.gb-container .mm-inner {
  width: min(var(--mm-max), 100%);
  margin-inline: auto;
}

.mm-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--mm-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mm-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.mm-section--dark .mm-kicker,
.mm-section--red .mm-kicker { color: #fff; }

.mm-display,
.gb-headline.mm-display {
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
  text-wrap: balance;
}
.mm-h2,
.gb-headline.mm-h2 {
  margin: 0 0 18px;
  color: var(--mm-black);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 850;
  text-wrap: balance;
}
.mm-section--dark .mm-h2,
.mm-section--red .mm-h2 { color: #fff; }
.mm-h3,
.gb-headline.mm-h3 {
  margin: 0 0 10px;
  color: var(--mm-black);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}
.mm-section--dark .mm-h3,
.mm-section--red .mm-h3 { color: #fff; }
.mm-lead {
  max-width: 760px;
  margin: 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  color: #525861;
}
.mm-section--dark .mm-lead,
.mm-section--red .mm-lead { color: rgba(255,255,255,.84); }
.mm-copy { font-size: 17px; line-height: 1.75; }
.mm-muted { color: #6a7078; }
.mm-section--dark .mm-muted { color: rgba(255,255,255,.7); }

.mm-hero {
  min-height: 690px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--mm-black);
  color: #fff;
}
.mm-hero__media {
  position: absolute;
  inset: 0;
}
.mm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
}
.mm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,13,.92) 0%, rgba(8,10,13,.72) 40%, rgba(8,10,13,.22) 78%),
    linear-gradient(0deg, rgba(8,10,13,.9) 0%, rgba(8,10,13,0) 55%);
}
.mm-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--mm-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 80px;
}
.mm-hero__eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mm-hero .mm-display { max-width: 900px; margin-top: 18px; }
.mm-hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.mm-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.mm-button,
.wp-block-button.mm-button .wp-block-button__link,
a.mm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--mm-red);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid var(--mm-red);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.mm-button:hover { transform: translateY(-2px); background: var(--mm-red-dark); border-color: var(--mm-red-dark); }
.mm-button--light,
a.mm-button--light { background: #fff; color: var(--mm-black) !important; border-color: #fff; }
.mm-button--ghost,
a.mm-button--ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.55); }
.mm-button--dark,
a.mm-button--dark { background: var(--mm-black); border-color: var(--mm-black); }

.mm-grid { display: grid; gap: 24px; }
.mm-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.mm-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.mm-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.mm-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.mm-split--reverse { grid-template-columns: .95fr 1.05fr; }

.mm-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(17,19,24,.05);
  overflow: hidden;
}
.mm-card--link { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.mm-card--link:hover { transform: translateY(-5px); box-shadow: var(--mm-shadow); border-color: rgba(200,16,46,.25); }
.mm-card a { color: var(--mm-red); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.mm-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(200,16,46,.08);
  color: var(--mm-red);
  font-size: 24px;
}
.mm-card__meta {
  margin: 0 0 8px;
  color: var(--mm-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.mm-card p:last-child { margin-bottom: 0; }
.mm-address { font-size: 14px; color: #6a7078; }
.mm-note {
  padding: 18px 20px;
  border-left: 4px solid var(--mm-red);
  background: #fff3f5;
  border-radius: 0 14px 14px 0;
}

.mm-statbar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--mm-border);
}
.mm-stat { padding: 26px; background: #fff; }
.mm-stat strong { display: block; color: var(--mm-black); font-size: 30px; line-height: 1; }
.mm-stat span { display: block; margin-top: 7px; color: #6a7078; font-size: 14px; }

.mm-photo {
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
  background: #ddd;
}
.mm-photo img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.mm-photo--wide img { aspect-ratio: 16/9; min-height: 0; }
.mm-photo-caption { font-size: 12px; color: #73777e; margin-top: 9px; }

.mm-directory {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
  margin-top: 34px;
}
.mm-place {
  padding: 24px;
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  background: #fff;
}
.mm-place h3 { margin: 0 0 8px; font-size: 21px; color: var(--mm-black); }
.mm-place p { margin-bottom: 10px; }
.mm-place__type { color: var(--mm-red); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.mm-place__address { color: #697079; font-size: 14px; }

.mm-map {
  overflow: hidden;
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  background: #ddd;
  min-height: 430px;
}
.mm-map iframe { display:block; width:100%; min-height:430px; height:100%; border:0; }

.mm-faq { max-width: 860px; margin-top: 34px; }
.mm-faq details {
  border-top: 1px solid var(--mm-border);
  padding: 18px 0;
}
.mm-faq details:last-child { border-bottom: 1px solid var(--mm-border); }
.mm-faq summary { cursor: pointer; color: var(--mm-black); font-weight: 800; font-size: 18px; }
.mm-faq details p { padding: 8px 0 0; margin: 0; line-height: 1.7; }

.mm-breadcrumbs { padding: 16px 24px; background: #fff; border-bottom: 1px solid var(--mm-border); font-size: 14px; }
.mm-breadcrumbs__inner { width:min(var(--mm-max),100%); margin:auto; }
.mm-breadcrumbs a { color: var(--mm-red); text-decoration:none; font-weight:700; }

.mm-page-hero {
  background: var(--mm-black);
  color:#fff;
  padding: clamp(76px, 9vw, 120px) 24px;
  position:relative;
  overflow:hidden;
}
.mm-page-hero::after {
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-100px;
  top:-120px;
  border-radius:50%;
  border:80px solid rgba(200,16,46,.18);
}
.mm-page-hero .mm-inner { position:relative; z-index:1; }
.mm-page-hero .mm-display { font-size:clamp(44px,6vw,74px); max-width:920px; }
.mm-page-hero p { max-width:760px; font-size:21px; color:rgba(255,255,255,.82); }

.mm-tagrow { display:flex; flex-wrap:wrap; gap:8px; margin:20px 0 0; }
.mm-tag { padding:8px 12px; background:#f5eef0; border-radius:999px; color:var(--mm-red-dark); font-size:13px; font-weight:800; }
.mm-section--dark .mm-tag { background:rgba(255,255,255,.09); color:#fff; }

.mm-article-index { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.mm-article-card { border-radius:18px; overflow:hidden; background:#fff; border:1px solid var(--mm-border); }
.mm-article-card img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.mm-article-card__body { padding:22px; }
.mm-article-card h3 { margin:0 0 10px; font-size:22px; }

.mm-contact-form { display:grid; gap:16px; }
.mm-contact-form label { font-weight:800; color:var(--mm-black); }
.mm-contact-form input,
.mm-contact-form textarea {
  width:100%;
  margin-top:7px;
  padding:14px 15px;
  border:1px solid #cfc9c3;
  border-radius:12px;
  background:#fff;
  font:inherit;
}
.mm-contact-form textarea { min-height:180px; resize:vertical; }
.mm-contact-form button { cursor:pointer; }
.mm-form-status { padding:14px 16px; border-radius:12px; margin-bottom:18px; }
.mm-form-status--success { background:#e9f8ee; color:#185b2b; }
.mm-form-status--error { background:#fff0f1; color:#8d1528; }
.mm-hp { position:absolute !important; left:-9999px !important; }

.mm-source-list li { margin-bottom:12px; }
.mm-source-list a { color:var(--mm-red); font-weight:700; }

@media (max-width: 980px) {
  .mm-grid--4 { grid-template-columns: repeat(2,1fr); }
  .mm-grid--3,
  .mm-directory,
  .mm-article-index { grid-template-columns: repeat(2,1fr); }
  .mm-split,
  .mm-split--reverse { grid-template-columns:1fr; }
  .mm-statbar { grid-template-columns:repeat(2,1fr); }
  .mm-hero { min-height:620px; }
}

@media (max-width: 680px) {
  .mm-section,
  .gb-container.mm-section { padding:58px 20px; }
  .mm-hero { min-height:610px; }
  .mm-hero__inner { width:min(var(--mm-max), calc(100% - 36px)); padding:100px 0 58px; }
  .mm-grid--2,
  .mm-grid--3,
  .mm-grid--4,
  .mm-directory,
  .mm-article-index { grid-template-columns:1fr; }
  .mm-statbar { grid-template-columns:1fr; }
  .mm-card { padding:23px; }
  .mm-map, .mm-map iframe { min-height:340px; }
}
