/* =============================================================
   Metropolis Management Group — Main Stylesheet
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
	--mmg-navy:            #0B2545;
	--mmg-navy-2:          #13315C;
	--mmg-blue:            #1E63D6;
	--mmg-blue-dark:       #1750B4;
	--mmg-blue-light:      #E7EFFC;
	--mmg-bg:              #FFFFFF;
	--mmg-bg-soft:         #F4F2EE;
	--mmg-bg-soft-2:       #EFEDE8;
	--mmg-text:            #2C3340;
	--mmg-text-muted:      #6B7385;
	--mmg-line:            #E2E2DA;
	--mmg-line-soft:       #ECEAE3;

	/* Career tile palette */
	--mmg-tile-blue:   #486A91;
	--mmg-tile-rust:   #A05A3A;
	--mmg-tile-grey:   #4A4F58;
	--mmg-tile-green:  #2F6660;

	/* World map */
	--mmg-map-fill:    #DCDCD3;
	--mmg-map-stroke:  #C5C5BC;
	--mmg-map-active:  #1E63D6;

	--mmg-radius:      14px;
	--mmg-radius-sm:   8px;
	--mmg-radius-lg:   24px;
	--mmg-shadow:      0 8px 32px -12px rgba(11, 37, 69, 0.18);
	--mmg-shadow-card: 0 4px 16px -4px rgba(11, 37, 69, 0.10);

	--mmg-container:   1280px;
	--mmg-gutter:      24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--mmg-text);
	background: var(--mmg-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mmg-navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mmg-blue); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--mmg-navy); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; top: -100px; left: 8px; padding: 12px 16px; background: var(--mmg-navy); color: #fff; z-index: 999; }
.skip-link:focus { top: 8px; color: #fff; }

/* ---------- Layout ---------- */
.mmg-container { max-width: var(--mmg-container); margin: 0 auto; padding: 0 var(--mmg-gutter); }
.mmg-section { padding: clamp(56px, 7vw, 110px) 0; }
.mmg-section--soft { background: var(--mmg-bg-soft); }
.mmg-section--narrow { padding: 80px 0; }

.mmg-section-header { max-width: 760px; margin-bottom: 56px; }
.mmg-section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.mmg-section-header--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 64px; }
.mmg-section-header__left { max-width: 720px; }
.mmg-section-title { color: var(--mmg-navy); font-weight: 700; }
.mmg-section-title--lg { font-size: clamp(2rem, 3.2vw, 2.75rem); }
.mmg-section-subtitle { color: var(--mmg-text-muted); font-size: 1rem; max-width: 720px; margin: 0; }
.mmg-section-subtitle--max { max-width: 820px; margin-left: auto; margin-right: auto; }

.mmg-eyebrow {
	font-family: 'Inter', monospace;
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--mmg-text-muted);
	margin: 0 0 18px;
}
.mmg-headline span { display: block; }

/* ---------- Image placeholders ---------- */
.mmg-img-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #DCDDD8 0%, #C8C9C2 100%);
	color: #6B7385;
	font-size: .82rem;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: var(--mmg-radius-sm);
	min-height: 240px;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.mmg-img-placeholder::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.04) 50%, rgba(255,255,255,.04) 75%, transparent 75%);
	background-size: 24px 24px;
	pointer-events: none;
}
.mmg-img-placeholder span { position: relative; z-index: 1; padding: 0 12px; text-align: center; }

.mmg-empty { color: var(--mmg-text-muted); font-style: italic; padding: 48px; text-align: center; background: var(--mmg-bg-soft); border-radius: var(--mmg-radius); }
.mmg-empty-card { background: var(--mmg-bg-soft); border-radius: var(--mmg-radius); padding: 56px; }
.mmg-empty-card--center { text-align: center; max-width: 720px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.mmg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	border: 1.5px solid transparent;
	transition: all .2s ease;
	white-space: nowrap;
	letter-spacing: .01em;
}
.mmg-btn--primary {
	background: var(--mmg-blue);
	color: #fff;
	border-color: var(--mmg-blue);
}
.mmg-btn--primary:hover { background: var(--mmg-blue-dark); border-color: var(--mmg-blue-dark); color: #fff; }
.mmg-btn--ghost {
	color: var(--mmg-navy);
	background: transparent;
	border-color: var(--mmg-navy);
}
.mmg-btn--ghost:hover { background: var(--mmg-navy); color: #fff; }
.mmg-btn--ghost-light {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
}
.mmg-btn--ghost-light:hover { background: rgba(255,255,255,0.95); color: var(--mmg-navy); border-color: #fff; }
.mmg-btn--lg { padding: 16px 32px; font-size: 1rem; }
.mmg-btn--md { padding: 12px 22px; font-size: .9rem; }

.mmg-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--mmg-blue);
	font-size: .92rem;
}
.mmg-link-arrow:hover { color: var(--mmg-blue-dark); }
.mmg-link-arrow:hover svg { transform: translateX(3px); }
.mmg-link-arrow svg { transition: transform .2s; }

.mmg-tag {
	display: inline-block;
	background: var(--mmg-bg-soft);
	color: var(--mmg-text-muted);
	font-size: .75rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.mmg-tag--accent { background: var(--mmg-blue); color: #fff; }

/* ---------- Header / Nav ---------- */
.mmg-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,0.96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--mmg-line-soft);
}
.mmg-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	height: 78px;
}
.mmg-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--mmg-navy);
	flex-shrink: 0;
}
.mmg-logo__image { max-height: 48px; width: auto; }
.mmg-logo__mark {
	font-family: 'Inter', sans-serif;
	font-size: 1.65rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}
.mmg-logo__l1, .mmg-logo__l3 { color: var(--mmg-navy); }
.mmg-logo__l2 { color: var(--mmg-blue); }
.mmg-logo__sub {
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--mmg-navy);
	text-transform: uppercase;
	max-width: 90px;
	line-height: 1.1;
	border-left: 1px solid var(--mmg-line);
	padding-left: 10px;
}

.mmg-nav { flex: 1; }
.mmg-nav__menu {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.mmg-nav__menu li a {
	color: var(--mmg-navy);
	font-size: .95rem;
	font-weight: 500;
	padding: 8px 4px;
	position: relative;
	transition: color .2s;
}
.mmg-nav__menu li.current-menu-item a,
.mmg-nav__menu li.current_page_item a,
.mmg-nav__menu li a:hover {
	color: var(--mmg-blue);
}
.mmg-nav__menu li a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	width: 0;
	height: 2px;
	background: var(--mmg-blue);
	transition: all .2s;
	transform: translateX(-50%);
}
.mmg-nav__menu li.current-menu-item a::after,
.mmg-nav__menu li a:hover::after { width: 100%; }

.mmg-nav__toggle {
	display: none;
	background: transparent;
	border: 0;
	color: var(--mmg-navy);
	padding: 6px;
}
.mmg-nav__toggle-close { display: none; }
.mmg-nav.is-open .mmg-nav__toggle-close { display: inline-flex; }
.mmg-nav.is-open .mmg-nav__toggle > svg:first-child { display: none; }

.mmg-header__cta { flex-shrink: 0; }

@media (max-width: 1024px) {
	.mmg-header__inner { height: 68px; }
	.mmg-logo__sub { display: none; }
	.mmg-nav__toggle { display: inline-flex; align-items: center; }
	.mmg-nav__menu {
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		flex-direction: column;
		gap: 0;
		padding: 24px;
		transform: translateX(100%);
		transition: transform .3s;
		overflow-y: auto;
	}
	.mmg-nav.is-open .mmg-nav__menu { transform: translateX(0); }
	.mmg-nav__menu li { border-bottom: 1px solid var(--mmg-line-soft); width: 100%; }
	.mmg-nav__menu li a { display: block; padding: 18px 0; font-size: 1.1rem; }
	.mmg-nav__menu li a::after { display: none; }
	.mmg-header__cta { display: none; }
}

/* ---------- Main / Hero ---------- */
.mmg-main { display: block; min-height: 60vh; }

.mmg-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	background-color: var(--mmg-navy);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}
.mmg-hero--page { min-height: 70vh; }
.mmg-hero__placeholder {
	position: absolute; inset: 0;
	border-radius: 0;
	min-height: 0;
	z-index: 0;
}
.mmg-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,37,69,.45) 0%, rgba(11,37,69,.78) 100%);
	z-index: 1;
}
.mmg-hero__inner {
	position: relative;
	z-index: 2;
	padding: 120px 0 80px;
	max-width: 980px;
}
.mmg-hero__title {
	color: #fff;
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	font-weight: 800;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}
.mmg-hero__title span { display: block; }
.mmg-hero__subtitle {
	color: rgba(255,255,255,.92);
	font-size: 1.1rem;
	max-width: 720px;
	margin-bottom: 40px;
	line-height: 1.7;
}
.mmg-hero__subtitle--narrow { max-width: 640px; }
.mmg-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.mmg-hero .mmg-eyebrow { color: rgba(255,255,255,.75); }

/* ---------- Stats Band (top of homepage) ---------- */
.mmg-stats-band {
	background: var(--mmg-navy);
	color: #fff;
	padding: 48px 0;
}
.mmg-stats-band__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.mmg-stat__value {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--mmg-navy);
	line-height: 1;
	letter-spacing: -0.02em;
}
.mmg-stats-band .mmg-stat__value { color: #fff; }
.mmg-stat__label {
	color: var(--mmg-text-muted);
	font-size: .9rem;
	margin-top: 8px;
	font-weight: 500;
}
.mmg-stats-band .mmg-stat__label { color: rgba(255,255,255,.75); }
.mmg-stat--lg .mmg-stat__value { font-size: clamp(2rem, 3.5vw, 3rem); }

@media (max-width: 768px) {
	.mmg-stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---------- Trust Section ---------- */
.mmg-trust__title { margin-bottom: 24px; }
.mmg-trust__divider { height: 1px; background: var(--mmg-line); margin: 24px 0 48px; }
.mmg-trust__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.mmg-trust__copy p { font-size: 1.05rem; line-height: 1.75; color: var(--mmg-text); }
.mmg-trust__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mmg-trust__img { border-radius: var(--mmg-radius); overflow: hidden; aspect-ratio: 4/5; }
.mmg-trust__img img { width: 100%; height: 100%; object-fit: cover; }
.mmg-trust__img--0 { grid-column: 1; grid-row: 1 / 3; }
.mmg-trust__img--1 { grid-column: 2; grid-row: 1; aspect-ratio: 4/3; }
.mmg-trust__img--2 { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }

.mmg-trust__grid--about { grid-template-columns: 1fr 1fr; }
.mmg-trust__about-image { border-radius: var(--mmg-radius); overflow: hidden; aspect-ratio: 4/5; }
.mmg-trust__about-image img,
.mmg-trust__about-image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
	.mmg-trust__grid, .mmg-trust__grid--about { grid-template-columns: 1fr; gap: 32px; }
	.mmg-trust__gallery { grid-template-columns: 1fr 1fr; }
	.mmg-trust__img--0 { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
}

/* ---------- Services Grid (homepage) ---------- */
.mmg-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.mmg-service-card {
	background: #fff;
	border-radius: var(--mmg-radius);
	overflow: hidden;
	border: 1px solid var(--mmg-line-soft);
	transition: transform .25s, box-shadow .25s;
}
.mmg-service-card:hover { transform: translateY(-4px); box-shadow: var(--mmg-shadow); }
.mmg-service-card__image { aspect-ratio: 4/3; overflow: hidden; }
.mmg-service-card__image img,
.mmg-service-card__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-service-card__title { padding: 24px 22px 0; font-size: 1.1rem; }
.mmg-service-card__body { padding: 8px 22px 24px; color: var(--mmg-text-muted); font-size: .92rem; }

@media (max-width: 1024px) { .mmg-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .mmg-services__grid { grid-template-columns: 1fr; } }

/* ---------- Properties Grid ---------- */
.mmg-properties__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.mmg-prop-card {
	background: #fff;
	border-radius: var(--mmg-radius);
	overflow: hidden;
	border: 1px solid var(--mmg-line-soft);
}
.mmg-prop-card__image { display: block; aspect-ratio: 4/3; overflow: hidden; }
.mmg-prop-card__image img,
.mmg-prop-card__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-prop-card__body { padding: 22px; }
.mmg-prop-card__name { font-size: 1.1rem; margin-bottom: 4px; }
.mmg-prop-card__loc { color: var(--mmg-text-muted); font-size: .9rem; margin-bottom: 4px; }
.mmg-prop-card__meta { color: var(--mmg-text-muted); font-size: .85rem; margin-bottom: 16px; }

@media (max-width: 900px) { .mmg-properties__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mmg-properties__grid { grid-template-columns: 1fr; } }

/* ---------- Roots ---------- */
.mmg-roots__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mmg-roots__col--image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-roots__col--image img,
.mmg-roots__col--image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-roots__title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; }
.mmg-roots__body { color: var(--mmg-text-muted); margin-bottom: 32px; line-height: 1.75; }
.mmg-roots__image2 { aspect-ratio: 16/9; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-roots__image2 img,
.mmg-roots__image2 .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }

@media (max-width: 900px) { .mmg-roots__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Approach (with accordion) ---------- */
.mmg-approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.mmg-approach__image { border-radius: var(--mmg-radius); overflow: hidden; aspect-ratio: 4/5; position: sticky; top: 100px; }
.mmg-approach__image img,
.mmg-approach__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }

.mmg-accordion { margin-top: 32px; }
.mmg-accordion__item { border-top: 1px solid var(--mmg-line); }
.mmg-accordion__item:last-child { border-bottom: 1px solid var(--mmg-line); }
.mmg-accordion__header {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
	color: var(--mmg-navy);
}
.mmg-accordion__title { font-size: 1.1rem; font-weight: 600; }
.mmg-accordion__icon-minus { display: none; }
.mmg-accordion__item.is-open .mmg-accordion__icon-plus { display: none; }
.mmg-accordion__item.is-open .mmg-accordion__icon-minus { display: inline-flex; }
.mmg-accordion__panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height .35s ease;
	color: var(--mmg-text-muted);
}
.mmg-accordion__item.is-open .mmg-accordion__panel { max-height: 400px; }
.mmg-accordion__panel p { padding: 0 0 22px; margin: 0; line-height: 1.65; }

@media (max-width: 900px) {
	.mmg-approach__grid { grid-template-columns: 1fr; gap: 32px; }
	.mmg-approach__image { position: static; aspect-ratio: 4/3; }
}

/* ---------- Value section (background image with overlay card) ---------- */
.mmg-value {
	position: relative;
	background-color: var(--mmg-navy-2);
	background-size: cover;
	background-position: center;
	padding: 110px 0;
	min-height: 540px;
}
.mmg-value::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,37,69,.60), rgba(11,37,69,.85));
}
.mmg-value__placeholder {
	position: absolute; inset: 0;
	border-radius: 0;
	min-height: 0;
	z-index: 0;
}
.mmg-value .mmg-container { position: relative; z-index: 2; }
.mmg-value__card {
	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--mmg-radius);
	padding: 56px;
	color: #fff;
	max-width: 980px;
	margin: 0 auto;
}
.mmg-value__title { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.mmg-value__body { color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.mmg-value__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mmg-value__stats .mmg-stat__value { color: #fff; }
.mmg-value__stats .mmg-stat__label { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
	.mmg-value__stats { grid-template-columns: 1fr; gap: 24px; }
	.mmg-value__card { padding: 32px 24px; }
}

/* ---------- Leadership ---------- */
.mmg-leadership__divider { height: 1px; background: var(--mmg-line); margin: 24px 0 48px; }
.mmg-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 24px;
}
.mmg-team-card { }
.mmg-team-card__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; margin-bottom: 16px; }
.mmg-team-card__image img,
.mmg-team-card__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-team-card__name { font-size: 1.05rem; margin-bottom: 2px; }
.mmg-team-card__position { color: var(--mmg-text-muted); font-size: .88rem; margin-bottom: 4px; }
.mmg-team-card__email { font-size: .85rem; color: var(--mmg-blue); }

@media (max-width: 1024px) { .mmg-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .mmg-team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA Band ---------- */
.mmg-cta-band {
	position: relative;
	background-color: var(--mmg-navy);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}
.mmg-cta-band__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,37,69,.65), rgba(11,37,69,.85));
}
.mmg-cta-band__inner {
	position: relative;
	z-index: 1;
	padding: 96px 0;
	text-align: center;
	max-width: 880px;
	margin: 0 auto;
}
.mmg-cta-band__title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.mmg-cta-band__title span { display: block; }
.mmg-cta-band__subtitle { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.mmg-cta-band__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.mmg-footer {
	background: var(--mmg-bg-soft);
	color: var(--mmg-navy);
	padding: 80px 0 0;
}
.mmg-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 48px;
}
.mmg-footer__brand { }
.mmg-footer__brand-image { width: 100%; aspect-ratio: 4/3; border-radius: var(--mmg-radius); overflow: hidden; margin-bottom: 24px; object-fit: cover; min-height: 120px; }
.mmg-logo--footer { display: inline-flex; }
.mmg-footer__tagline { color: var(--mmg-text-muted); font-size: .92rem; margin-top: 18px; max-width: 320px; }
.mmg-footer__heading { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mmg-navy); margin-bottom: 18px; font-weight: 600; }
.mmg-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.mmg-footer__menu a { color: var(--mmg-text); font-size: .95rem; }
.mmg-footer__menu a:hover { color: var(--mmg-blue); }
.mmg-footer__contact { font-size: 1rem; margin: 0 0 6px; }
.mmg-footer__contact a { color: var(--mmg-text); }
.mmg-footer__socials { display: flex; gap: 12px; margin: 24px 0; }
.mmg-footer__social {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mmg-navy);
	transition: all .2s;
}
.mmg-footer__social:hover { background: var(--mmg-blue); color: #fff; }

.mmg-footer__partners { margin-top: 16px; }
.mmg-footer__partners-list {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 12px;
}
.mmg-footer__partner-link {
	display: inline-flex;
	align-items: center;
	height: 32px;
	transition: opacity .2s;
}
.mmg-footer__partner-link:hover { opacity: 0.7; }
.mmg-footer__partner-logo {
	height: 28px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	display: block;
}

.mmg-footer__bottom {
	border-top: 1px solid var(--mmg-line);
	margin-top: 64px;
}
.mmg-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 24px 0;
	flex-wrap: wrap;
}
.mmg-footer__copyright { color: var(--mmg-text-muted); font-size: .85rem; margin: 0; }
.mmg-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.mmg-footer__legal a { color: var(--mmg-text-muted); font-size: .85rem; }
.mmg-footer__legal a:hover { color: var(--mmg-blue); }

@media (max-width: 1024px) {
	.mmg-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 700px) {
	.mmg-footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Page Hero (About / Locations / Contact) ---------- */
.mmg-page-hero { padding: 96px 0 64px; }
.mmg-page-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: end;
	max-width: 1200px;
}
.mmg-page-hero__title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0; line-height: 1.05; }
.mmg-page-hero__title span { display: block; }
.mmg-page-hero__body { color: var(--mmg-text-muted); font-size: 1.05rem; margin: 0; padding-bottom: 12px; }

@media (max-width: 768px) {
	.mmg-page-hero { padding: 64px 0 32px; }
	.mmg-page-hero__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Full-bleed image ---------- */
.mmg-fullbleed {
	width: 100%;
	aspect-ratio: 21/9;
	overflow: hidden;
	position: relative;
}
.mmg-fullbleed img,
.mmg-fullbleed__placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }

/* ---------- Mission & Vision ---------- */
.mmg-mv__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.mmg-mv__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; position: sticky; top: 100px; }
.mmg-mv__image img,
.mmg-mv__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-mv__copy { display: flex; flex-direction: column; gap: 56px; }
.mmg-mv__heading { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 16px; line-height: 1.3; }
.mmg-mv__block p { color: var(--mmg-text-muted); line-height: 1.75; margin-bottom: 16px; }

@media (max-width: 900px) {
	.mmg-mv__grid { grid-template-columns: 1fr; gap: 32px; }
	.mmg-mv__image { position: static; aspect-ratio: 4/3; }
}

/* ---------- About: Operate (pillars + stats) ---------- */
.mmg-operate__pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 80px;
}
.mmg-pillar {
	border-top: 2px solid var(--mmg-navy);
	padding-top: 20px;
}
.mmg-pillar__title { margin-bottom: 12px; font-size: 1.05rem; }
.mmg-pillar__body { color: var(--mmg-text-muted); font-size: .95rem; }

.mmg-operate__stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.mmg-operate__stats-image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-operate__stats-image img,
.mmg-operate__stats-image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-operate__stats-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-top: 32px; }

@media (max-width: 900px) {
	.mmg-operate__pillars { grid-template-columns: repeat(2, 1fr); }
	.mmg-operate__stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .mmg-operate__pillars { grid-template-columns: 1fr; } }

/* ---------- Markets ---------- */
.mmg-markets__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mmg-markets__image { aspect-ratio: 4/3; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-markets__image img,
.mmg-markets__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-markets__p { color: var(--mmg-text-muted); line-height: 1.75; }
.mmg-markets__p:last-child { margin-bottom: 0; }

@media (max-width: 900px) { .mmg-markets__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Principles ---------- */
.mmg-principles { padding: 110px 0; background: var(--mmg-bg-soft); }
.mmg-principles__image { aspect-ratio: 21/9; border-radius: var(--mmg-radius); overflow: hidden; margin: 0 auto 64px; max-width: 1200px; }
.mmg-principles__image img,
.mmg-principles__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-principles__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.mmg-principle__icon {
	color: var(--mmg-navy);
	margin-bottom: 18px;
}
.mmg-principle__title { font-size: 1.05rem; margin-bottom: 8px; }
.mmg-principle__body { color: var(--mmg-text-muted); font-size: .95rem; }

@media (max-width: 1024px) { .mmg-principles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .mmg-principles__grid { grid-template-columns: 1fr; } }

/* ---------- Services Page: numbered list ---------- */
.mmg-services-list__items { display: flex; flex-direction: column; gap: 80px; }
.mmg-service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.mmg-service-row--reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.mmg-service-row--reverse > * { direction: ltr; }
.mmg-service-row__image { aspect-ratio: 4/3; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-service-row__image img,
.mmg-service-row__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-service-row__num {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--mmg-blue);
	margin-bottom: 12px;
	letter-spacing: .05em;
}
.mmg-service-row__title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 16px; }
.mmg-service-row__desc { color: var(--mmg-text-muted); line-height: 1.75; }

@media (max-width: 900px) {
	.mmg-service-row, .mmg-service-row--reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
}

/* ---------- Process steps ---------- */
.mmg-process { position: relative; padding: 110px 0 110px; background: var(--mmg-navy); color: #fff; overflow: hidden; }
.mmg-process__image { position: absolute; inset: 0; opacity: .15; }
.mmg-process__image img,
.mmg-process__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-process__inner { position: relative; z-index: 1; }
.mmg-process .mmg-section-title { color: #fff; }
.mmg-process .mmg-section-subtitle { color: rgba(255,255,255,.85); }
.mmg-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 64px;
}
.mmg-process__step { border-top: 2px solid rgba(255,255,255,.3); padding-top: 20px; }
.mmg-process__step-num { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: .1em; }
.mmg-process__step-title { color: #fff; font-size: 1.1rem; margin: 12px 0 8px; }
.mmg-process__step-body { color: rgba(255,255,255,.8); font-size: .95rem; }

@media (max-width: 900px) { .mmg-process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .mmg-process__steps { grid-template-columns: 1fr; } }

/* ---------- Discipline ---------- */
.mmg-discipline__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.mmg-discipline__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; position: sticky; top: 100px; }
.mmg-discipline__image img,
.mmg-discipline__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-discipline__body { color: var(--mmg-text-muted); margin-bottom: 32px; line-height: 1.75; }
.mmg-discipline__features { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.mmg-feature__icon { color: var(--mmg-blue); margin-bottom: 14px; }
.mmg-feature__title { font-size: 1.02rem; margin-bottom: 8px; }
.mmg-feature__body { color: var(--mmg-text-muted); font-size: .92rem; }

@media (max-width: 900px) {
	.mmg-discipline__grid { grid-template-columns: 1fr; gap: 32px; }
	.mmg-discipline__image { position: static; aspect-ratio: 4/3; }
	.mmg-discipline__features { grid-template-columns: 1fr; }
}

/* ---------- Offices ---------- */
.mmg-offices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mmg-office-card { background: #fff; border-radius: var(--mmg-radius); overflow: hidden; border: 1px solid var(--mmg-line-soft); }
.mmg-office-card--hq { border: 2px solid var(--mmg-blue); }
.mmg-office-card__image { aspect-ratio: 16/9; }
.mmg-office-card__image img,
.mmg-office-card__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-office-card__body { padding: 24px; }
.mmg-office-card__title { margin-bottom: 8px; }
.mmg-office-card__line { color: var(--mmg-text-muted); font-size: .92rem; margin: 0 0 4px; }
.mmg-office-card__contact { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--mmg-line-soft); font-size: .9rem; }
.mmg-office-card__contact a { color: var(--mmg-blue); }

@media (max-width: 900px) { .mmg-offices__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .mmg-offices__grid { grid-template-columns: 1fr; } }

/* ---------- World Map ---------- */
.mmg-worldmap__wrap { display: grid; grid-template-columns: 1fr; gap: 32px; }
.mmg-worldmap__base {
	position: relative;
	background: #fff;
	border-radius: var(--mmg-radius);
	padding: 32px;
	border: 1px solid var(--mmg-line-soft);
	overflow: hidden;
}
.mmg-worldmap__svg { width: 100%; height: auto; display: block; }
.mmg-worldmap__pins {
	position: absolute;
	top: 32px; left: 32px;
	right: 32px; bottom: 32px;
	pointer-events: none;
}
.mmg-worldmap__pin {
	position: absolute;
	width: 18px; height: 18px;
	transform: translate(-50%, -50%);
	background: transparent;
	border: 0;
	padding: 0;
	pointer-events: auto;
	z-index: 2;
}
.mmg-worldmap__pin-dot {
	display: block;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--mmg-blue);
	box-shadow: 0 0 0 4px rgba(30,99,214,0.18), 0 2px 6px rgba(11,37,69,.4);
	position: absolute;
	left: 2px; top: 2px;
	z-index: 2;
}
.mmg-worldmap__pin-pulse {
	position: absolute;
	left: -2px; top: -2px;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(30,99,214,0.35);
	animation: mmg-pulse 2s ease-out infinite;
	z-index: 1;
}
.mmg-worldmap__pin.is-active .mmg-worldmap__pin-dot {
	background: #fff;
	box-shadow: 0 0 0 5px var(--mmg-blue), 0 4px 12px rgba(11,37,69,.5);
}
@keyframes mmg-pulse {
	0%   { transform: scale(0.8); opacity: 0.7; }
	100% { transform: scale(2.2); opacity: 0; }
}
.mmg-worldmap__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.mmg-worldmap__card {
	background: #fff;
	border-radius: var(--mmg-radius);
	padding: 24px;
	border: 1px solid var(--mmg-line-soft);
	transition: all .25s;
}
.mmg-worldmap__card.is-active {
	border-color: var(--mmg-blue);
	box-shadow: 0 4px 16px -4px rgba(30,99,214,.25);
}
.mmg-worldmap__card-title { margin-bottom: 8px; }
.mmg-worldmap__card p { font-size: .9rem; color: var(--mmg-text-muted); margin: 0 0 4px; }
.mmg-worldmap__card a { color: var(--mmg-blue); }

/* ---------- Careers ---------- */
.mmg-careers-hero { padding: 96px 0; }
.mmg-careers-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mmg-careers-hero__title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
.mmg-careers-hero__title span { display: block; }
.mmg-careers-hero__body { color: var(--mmg-text-muted); font-size: 1.05rem; margin-bottom: 32px; }
.mmg-careers-hero__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-careers-hero__image img,
.mmg-careers-hero__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }

@media (max-width: 900px) { .mmg-careers-hero__inner { grid-template-columns: 1fr; } }

/* Why tiles */
.mmg-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mmg-why-tile {
	border-radius: var(--mmg-radius);
	padding: 32px;
	color: #fff;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.mmg-why-tile--blue  { background: var(--mmg-tile-blue); }
.mmg-why-tile--rust  { background: var(--mmg-tile-rust); }
.mmg-why-tile--grey  { background: var(--mmg-tile-grey); }
.mmg-why-tile--green { background: var(--mmg-tile-green); }
.mmg-why-tile__icon { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.mmg-why-tile__title { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.mmg-why-tile__body { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.5; margin: 0; }

@media (max-width: 1024px) { .mmg-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .mmg-why__grid { grid-template-columns: 1fr; } }

/* Culture */
.mmg-culture__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.mmg-culture__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-culture__image img,
.mmg-culture__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }
.mmg-culture__copy > p { color: var(--mmg-text-muted); margin-bottom: 32px; line-height: 1.75; }
.mmg-culture__items { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mmg-culture__item { border-top: 2px solid var(--mmg-navy); padding-top: 14px; }
.mmg-culture__item h4 { margin-bottom: 6px; font-size: 1rem; }
.mmg-culture__item p { color: var(--mmg-text-muted); font-size: .9rem; margin: 0; }

@media (max-width: 900px) { .mmg-culture__grid { grid-template-columns: 1fr; gap: 32px; } .mmg-culture__items { grid-template-columns: 1fr; } }

/* Benefits */
.mmg-benefits__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.mmg-benefits__list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.mmg-benefits__list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.mmg-benefits__check { color: var(--mmg-blue); display: inline-flex; }
.mmg-benefits__image { aspect-ratio: 4/5; border-radius: var(--mmg-radius); overflow: hidden; }
.mmg-benefits__image img,
.mmg-benefits__image .mmg-img-placeholder { width: 100%; height: 100%; object-fit: cover; min-height: 0; border-radius: 0; }

@media (max-width: 900px) { .mmg-benefits__grid { grid-template-columns: 1fr; } .mmg-benefits__list { grid-template-columns: 1fr; } }

/* Jobs */
.mmg-jobs__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mmg-job-card { background: var(--mmg-bg-soft); border-radius: var(--mmg-radius); padding: 32px; border: 1px solid var(--mmg-line-soft); transition: all .25s; }
.mmg-job-card:hover { border-color: var(--mmg-blue); box-shadow: var(--mmg-shadow-card); transform: translateY(-2px); }
.mmg-job-card__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: .85rem; color: var(--mmg-text-muted); }
.mmg-job-card__meta .mmg-tag { margin: 0; background: #fff; }
.mmg-job-card__title { margin-bottom: 8px; font-size: 1.2rem; }
.mmg-job-card__body { color: var(--mmg-text-muted); margin-bottom: 16px; font-size: .92rem; }

@media (max-width: 768px) { .mmg-jobs__grid { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.mmg-contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.mmg-contact__info { padding-right: 16px; }
.mmg-contact__block { margin-top: 32px; }
.mmg-contact__block h4 { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mmg-text-muted); margin-bottom: 6px; }
.mmg-contact__block p { color: var(--mmg-navy); font-size: 1rem; margin: 0; }

.mmg-contact__form-wrap { background: var(--mmg-bg-soft); border-radius: var(--mmg-radius); padding: 40px; }

.mmg-form { }
.mmg-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.mmg-form__field { margin-bottom: 18px; }
.mmg-form__field label { display: block; font-size: .85rem; font-weight: 600; color: var(--mmg-navy); margin-bottom: 6px; }
.mmg-form__field input,
.mmg-form__field select,
.mmg-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--mmg-radius-sm);
	border: 1px solid var(--mmg-line);
	background: #fff;
	font-family: inherit;
	font-size: .95rem;
	color: var(--mmg-navy);
	transition: border-color .2s, box-shadow .2s;
}
.mmg-form__field input:focus,
.mmg-form__field select:focus,
.mmg-form__field textarea:focus {
	outline: none;
	border-color: var(--mmg-blue);
	box-shadow: 0 0 0 3px rgba(30,99,214,0.1);
}
.mmg-form__field.has-error input,
.mmg-form__field.has-error select,
.mmg-form__field.has-error textarea {
	border-color: #c0392b;
}
.mmg-form__field textarea { resize: vertical; min-height: 120px; }

.mmg-form-message { padding: 16px 20px; border-radius: var(--mmg-radius-sm); margin-bottom: 24px; }
.mmg-form-message--success { background: #DEF2DD; color: #2D5E2A; }
.mmg-form-message--error   { background: #FDECEA; color: #8E2A21; }
.mmg-form-message h3 { color: inherit; margin-bottom: 4px; font-size: 1.05rem; }

@media (max-width: 900px) {
	.mmg-contact__grid { grid-template-columns: 1fr; gap: 40px; }
	.mmg-form__row { grid-template-columns: 1fr; }
	.mmg-contact__form-wrap { padding: 24px; }
}

/* ---------- 404 ---------- */
.mmg-404 { text-align: center; padding: 140px 0; }
.mmg-404__title { margin-bottom: 24px; }
.mmg-404__body { max-width: 520px; margin: 0 auto 32px; color: var(--mmg-text-muted); }

/* ---------- Generic page ---------- */
.mmg-page-header { margin-bottom: 48px; }
.mmg-page-header__title { font-size: clamp(2rem, 4vw, 3rem); }
.mmg-page-header__meta { color: var(--mmg-text-muted); font-size: 1rem; margin: 12px 0 0; }
.mmg-prose { max-width: 760px; }
.mmg-prose p { margin-bottom: 1.2em; line-height: 1.75; }
.mmg-prose h2, .mmg-prose h3 { margin-top: 1.5em; }
.mmg-prose ul, .mmg-prose ol { margin: 0 0 1.2em 1.4em; padding: 0; }
.mmg-prose li { margin-bottom: .4em; }

.mmg-search-form { display: flex; gap: 12px; max-width: 480px; }
.mmg-search-form__input { flex: 1; padding: 12px 14px; border: 1px solid var(--mmg-line); border-radius: var(--mmg-radius-sm); }

/* ---------- Posts list ---------- */
.mmg-post-list { display: grid; gap: 32px; }
.mmg-post-item { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }
.mmg-post-item__thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--mmg-radius-sm); }
.mmg-post-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mmg-post-item__title { font-size: 1.3rem; margin-bottom: 8px; }
.mmg-post-item__meta { color: var(--mmg-text-muted); font-size: .85rem; }

@media (max-width: 600px) { .mmg-post-item { grid-template-columns: 1fr; } }
