@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Source+Serif+4:wght@600;700&display=swap');

:root {
	--mme-primary: #c2185b;
	--mme-text: #2e2e2e;
	--mme-bg: #f7f4f6;
	--mme-white: #ffffff;
	--mme-bg-body: #f7f4f6;
	--mme-bg-header: #ffffff;
	--mme-bg-hero: #ffffff;
	--mme-bg-3g: #ffffff;
	--mme-bg-toxic: #f7f4f6;
	--mme-bg-writing: #f7f4f6;
	--mme-bg-about: #ffffff;
	--mme-bg-footer: #ffffff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: var(--mme-text);
	background: var(--mme-bg-body);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

.mme-container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

/* Keep narrower content width, but align it to the same left gutter as full containers. */
.mme-container.mme-narrow {
	margin-left: max(calc((100% - 1120px) / 2), 4%);
	margin-right: auto;
}

.mme-top-strip {
	height: 22px;
	background: linear-gradient(90deg, #a10856, var(--mme-primary));
}

.mme-site-header {
	background: var(--mme-bg-header);
	box-shadow: 0 8px 20px rgba(35, 21, 29, 0.06);
}

.mme-header-inner {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto auto;
	align-items: center;
	padding: 0.85rem 0;
	gap: 1.25rem;
}

.mme-branding {
	min-width: 0;
}

.mme-branding .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.mme-branding .custom-logo {
	width: auto;
	height: auto;
	max-height: 110px;
	max-width: min(100%, 460px);
}

.mme-site-title {
	font-weight: 700;
}

.mme-nav {
	min-width: 0;
	justify-self: center;
}

.mme-menu,
.mme-auth-links {
	display: flex;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mme-menu {
	flex-wrap: wrap;
	justify-content: center;
}

.mme-auth-links {
	justify-self: end;
	white-space: nowrap;
}

.mme-auth-links a {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.mme-hero {
	padding: 2.2rem 0 1.8rem;
	background: radial-gradient(circle at top right, rgba(194, 24, 91, 0.08), transparent 44%), var(--mme-bg-hero);
}

.mme-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(260px, 420px);
	gap: 2.25rem;
	align-items: center;
}

.mme-hero-copy {
	max-width: 640px;
}

.mme-hero-tagline {
	font-size: clamp(1.45rem, 3vw, 1.9rem);
	font-weight: 500;
	margin: 0 0 0.6rem;
}

.mme-hero-title {
	font-family: 'Source Serif 4', serif;
	font-size: clamp(2.2rem, 5.8vw, 4rem);
	line-height: 1.02;
	color: var(--mme-primary);
	margin: 0 0 0.75rem;
}

.mme-hero-pillars {
	font-weight: 700;
	font-size: 1.05rem;
	margin: 0 0 1rem;
}

.mme-hero-description {
	max-width: 600px;
}

.mme-hero-name {
	margin: 1.3rem 0 0.15rem;
	font-weight: 700;
}

.mme-hero-role {
	margin: 0 0 1.1rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.mme-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.mme-hero-media {
	/* width: min(100%, 360px); */
	max-width: 360px;
	justify-self: end;
	height: 360px;
	max-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	overflow: hidden;
	background: #ece7eb;
}

.mme-hero-media img,
.mme-hero-photo {
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	display: block;
	object-fit: contain;
	object-position: center center;
	box-shadow: 0 18px 32px rgba(46, 46, 46, 0.18);
}

.mme-hero-placeholder {
	height: 100%;
	background: linear-gradient(180deg, #ece7eb, #dbd4d8);
	display: grid;
	place-items: center;
	font-weight: 700;
	color: #666;
	text-align: center;
	padding: 1.2rem;
}

.mme-btn {
	display: inline-block;
	padding: 0.62rem 1.12rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.92rem;
	border: 1px solid transparent;
}

.mme-btn-primary {
	background: var(--mme-primary);
	color: #fff;
}

.mme-btn-outline {
	border-color: var(--mme-primary);
	color: var(--mme-primary);
	background: transparent;
}

.mme-btn-inverse {
	background: #fff;
	border-color: var(--mme-primary);
	color: var(--mme-primary);
}

.mme-section {
	padding: 4rem 0;
}

.mme-section-light {
	background: var(--mme-bg-about);
}

.mme-section-3g {
	background: var(--mme-bg-3g);
}

.mme-section-toxic {
	background: var(--mme-bg-toxic);
}

.mme-section-writing {
	background: var(--mme-bg-writing);
}

.mme-section-about {
	background: var(--mme-bg-about);
}

.mme-section h2 {
	font-family: 'Source Serif 4', serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin-top: 0;
}

.mme-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.78rem;
	font-weight: 700;
	color: #5d5157;
}

.mme-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.mme-post-card {
	background: #fff;
	border-radius: 10px;
	padding: 1rem;
	box-shadow: 0 8px 20px rgba(83, 48, 32, 0.14);
}

.mme-post-card h3 {
	margin: 0 0 0.45rem;
}

.mme-post-card p {
	margin: 0;
}

.mme-post-list-item {
	padding: 1.1rem 0;
	border-bottom: 1px solid #e2dce0;
}

.mme-rich-text p {
	margin-top: 0;
}

.mme-meta {
	opacity: 0.72;
	font-size: 0.88rem;
}

.mme-site-footer {
	padding: 2rem 0;
	border-top: 1px solid #e7dfe4;
	font-size: 0.92rem;
	background: var(--mme-bg-footer);
}

@media (max-width: 920px) {
	.mme-hero-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.mme-post-grid {
		grid-template-columns: 1fr;
	}

	.mme-header-inner {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		padding: 0.7rem 0;
	}

	.mme-branding,
	.mme-nav,
	.mme-auth-links {
		justify-self: center;
	}

	.mme-branding .custom-logo {
		max-height: 84px;
	}

	.mme-hero-media {
		justify-self: start;
		width: min(100%, 320px);
		max-width: 320px;
		height: 320px;
		max-height: 320px;
	}
}
