/* ===== Variables ===== */
:root {
	--mm-green: #2B5A2E;
	--mm-green-dark: #1E4221;
	--mm-gold: #FFC72C;
	--mm-gold-text: #B98A0E;
	--mm-accent: #D6236B;
	--mm-bg: #FFFFFF;
	--mm-surface: #FFFFFF;
	--mm-surface-tint: #FAFAF8;
	--mm-heading: #1C231D;
	--mm-body: #5B615C;
	--mm-border: #ECEAE4;
	--mm-radius: 20px;
	--mm-radius-sm: 12px;
	--mm-shadow: 0 10px 30px rgba(28, 35, 29, 0.08);
	--mm-shadow-lg: 0 20px 50px rgba(28, 35, 29, 0.14);
	--mm-container: 1200px;
	--mm-header-h: 84px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--mm-bg);
	color: var(--mm-body);
	font-family: 'Manrope', sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--mm-green); text-decoration: none; }
h1, h2, h3 { color: var(--mm-heading); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.mm-section-heading { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; }
.mm-eyebrow { margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mm-gold-text); }

/* ===== Background blobs (subtle, decorative only) ===== */
.mm-blob {
	position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0;
}
.mm-blob--a { top: -10%; right: -8%; width: 480px; height: 480px; background: rgba(43, 90, 46, 0.10); }
.mm-blob--b { bottom: -15%; left: -10%; width: 420px; height: 420px; background: rgba(255, 199, 44, 0.14); }
.mm-blob--c { top: 10%; left: -12%; width: 460px; height: 460px; background: rgba(214, 35, 107, 0.07); }
.mm-blob--d { top: -20%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: rgba(43, 90, 46, 0.08); }
.mm-blob--e { bottom: -10%; right: -8%; width: 440px; height: 440px; background: rgba(255, 199, 44, 0.10); }

/* ===== Doodles (subtle line-art decoration) ===== */
.mm-doodle { position: absolute; fill: none; stroke: var(--mm-green); stroke-width: 2; opacity: 0.12; pointer-events: none; z-index: 0; }
.mm-doodle--cone { width: 110px; top: 8%; right: 6%; transform: rotate(-8deg); }
.mm-doodle--leaf { width: 130px; bottom: 10%; left: 4%; stroke: var(--mm-gold-text); transform: rotate(10deg); }

/* ===== Placeholder boxes (image slots without a real image yet) ===== */
.mm-placeholder {
	width: 100%; border-radius: inherit; display: flex; align-items: center; justify-content: center;
	background: repeating-linear-gradient(45deg, var(--mm-border), var(--mm-border) 6px, var(--mm-surface-tint) 6px, var(--mm-surface-tint) 12px);
	border: 1px solid var(--mm-border);
}
.mm-placeholder span {
	font-family: 'SFMono-Regular', Consolas, monospace; font-size: 11px; line-height: 1.6; color: #8A8E89;
	text-align: center; padding: 10px;
}

/* ===== Scroll progress ===== */
.mm-scroll-progress {
	position: fixed; top: 0; left: 0; height: 3px; width: 0%;
	background: linear-gradient(90deg, var(--mm-green), var(--mm-gold));
	z-index: 1000; transition: width 0.1s linear;
}

/* ===== Buttons ===== */
.mm-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 16px 32px; border-radius: 999px; font-weight: 700; font-size: 15px;
	overflow: hidden; z-index: 1; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.mm-btn--sm { padding: 11px 22px; font-size: 13.5px; }
.mm-btn::before {
	content: ''; position: absolute; inset: 0; z-index: -1;
	transform: translateX(-100%); transition: transform 0.35s ease;
}
.mm-btn--primary { background: var(--mm-green); color: #fff; }
.mm-btn--primary::before { background: var(--mm-green-dark); }
.mm-btn--accent { background: var(--mm-accent); color: #fff; }
.mm-btn--accent::before { background: #B01A56; }
.mm-btn--outline { border: 1.5px solid var(--mm-border); color: var(--mm-heading); }
.mm-btn--outline::before { background: var(--mm-surface-tint); }
.mm-btn--outline:hover { border-color: var(--mm-green); color: var(--mm-green); }
.mm-btn:hover::before { transform: translateX(0); }
.mm-btn:hover { box-shadow: var(--mm-shadow-lg); transform: translateY(-2px); }

/* ===== Header ===== */
.mm-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 900;
	padding: 18px 5vw; display: flex; align-items: center;
	background: var(--mm-surface); box-shadow: 0 2px 14px rgba(28,35,29,0.06);
	transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.mm-header.is-scrolled {
	box-shadow: var(--mm-shadow); padding: 12px 5vw;
}
.mm-header__inner {
	width: 100%; max-width: 1400px; margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between;
}
.mm-header__logo img { height: 48px; width: auto; transition: height 0.3s ease; }
.mm-header.is-scrolled .mm-header__logo img { height: 38px; }
.mm-header__logo-text { font-weight: 800; font-size: 20px; color: var(--mm-heading); }

.mm-nav { display: flex; align-items: center; gap: 32px; }
.mm-nav__link {
	position: relative; font-size: 16px; font-weight: 700; color: var(--mm-heading);
	padding-bottom: 4px;
}
.mm-nav__link::after {
	content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
	background: var(--mm-green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.mm-nav__link:hover::after { transform: scaleX(1); }

.mm-nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; }
.mm-nav-toggle span { height: 2px; background: var(--mm-heading); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mm-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mm-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mm-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Reveal utility ===== */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
.mm-values__item[data-reveal] { transition-delay: calc(var(--mm-i, 0) * 120ms); }

/* ===== Hero (full-bleed 1920x700 slideshow banner) ===== */
.mm-hero { position: relative; overflow: hidden; }
.mm-hero__slides { position: relative; width: 100%; aspect-ratio: 1920/700; min-height: 460px; }
.mm-hero__slide {
	position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
	display: flex; align-items: center;
}
.mm-hero__slide.is-active { opacity: 1; z-index: 1; }
.mm-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; }
.mm-hero__media img, .mm-hero__media .mm-placeholder { width: 100%; height: 100%; object-fit: cover; }
.mm-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,24,20,0.55) 0%, rgba(20,24,20,0.85) 100%);
	opacity: var(--mm-overlay-opacity, 0.45);
	transition: opacity 0.4s ease;
}
.mm-hero__content { position: relative; z-index: 2; padding: 0 5vw; max-width: 700px; color: #fff; }
.mm-hero__headline { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; line-height: 1.15; color: #fff; margin: 0; }
.mm-hero__accent { color: var(--mm-gold); }

.mm-hero__headline {
	opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.mm-hero__slide.is-active .mm-hero__headline { opacity: 1; transform: none; transition-delay: 0.25s; }

.mm-hero__arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	display: flex; align-items: center; justify-content: center; color: #fff;
	transition: background 0.3s ease, transform 0.3s ease;
}
.mm-hero__arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.mm-hero__arrow:hover { background: rgba(255,255,255,0.35); }
.mm-hero__arrow:active { transform: translateY(-50%) scale(0.92); }
.mm-hero__arrow--prev { left: 18px; }
.mm-hero__arrow--next { right: 18px; }
@media (max-width: 767px) {
	.mm-hero__arrow {
		width: 30px; height: 30px;
		top: auto; bottom: 20px; transform: none;
	}
	.mm-hero__arrow:active { transform: scale(0.92); }
	.mm-hero__arrow svg { width: 13px; height: 13px; }
}

/* ===== About ===== */
.mm-about { position: relative; overflow: hidden; padding: 100px 5vw; }
.mm-about__inner { position: relative; z-index: 1; max-width: var(--mm-container); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.mm-about__media { aspect-ratio: 4/4.6; max-height: 560px; }
.mm-about__media img, .mm-about__media .mm-placeholder { border-radius: var(--mm-radius); box-shadow: var(--mm-shadow-lg); height: 100%; }
.mm-about__body { font-size: 16px; line-height: 1.75; margin: 20px 0 32px; }
.mm-values { display: grid; gap: 24px; }
.mm-values__item { display: flex; gap: 16px; align-items: flex-start; }
.mm-values__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(43,90,46,0.08); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mm-values__icon img { width: 24px; height: 24px; }
.mm-values__icon .mm-placeholder span { font-size: 7px; padding: 2px; }
.mm-values__item h3 { font-size: 17px; margin-bottom: 4px; }
.mm-values__item p { font-size: 14.5px; line-height: 1.6; }

/* ===== Our Brands (tabbed switcher) ===== */
.mm-brands { position: relative; padding: 100px 5vw; background: var(--mm-surface-tint); overflow: hidden; }
.mm-brands__head { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto 56px; }
.mm-brands__subtext { font-size: 16px; line-height: 1.7; margin-top: 12px; }

.mm-brand-tabs { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.mm-brand-tabs__nav {
	position: relative; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
	background: var(--mm-surface); border: 1px solid var(--mm-border); border-radius: 999px;
	padding: 6px; margin: 0 auto 48px; max-width: max-content;
}
.mm-brand-tabs__btn {
	position: relative; z-index: 1; padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
	color: var(--mm-body); transition: color 0.3s ease;
}
.mm-brand-tabs__btn.is-active { color: #fff; }
.mm-brand-tabs__indicator {
	position: absolute; top: 6px; bottom: 6px; left: 6px; width: 0; border-radius: 999px;
	background: var(--mm-green); transition: transform 0.35s cubic-bezier(.4,0,.2,1), width 0.35s cubic-bezier(.4,0,.2,1);
	z-index: 0;
}

.mm-brand-tabs__panel {
	display: none; grid-template-columns: 1.2fr 1fr; column-gap: 56px; row-gap: 14px;
	grid-template-areas: "main content" "thumbs .";
	align-items: center;
}
.mm-brand-tabs__panel.is-active { display: grid; animation: mmFadeUp 0.6s ease both; }
@keyframes mmFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.mm-brand-tabs__main { grid-area: main; position: relative; }
.mm-brand-tabs__main > img, .mm-brand-tabs__main > .mm-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: var(--mm-radius); box-shadow: var(--mm-shadow); object-fit: cover; }
.mm-brand-tabs__thumbs { grid-area: thumbs; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mm-brand-tabs__content { grid-area: content; }
.mm-brand-tabs__thumb {
	aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; padding: 0; position: relative;
	outline: 2.5px solid transparent; outline-offset: 2px; transition: outline-color 0.25s ease, transform 0.25s ease;
}
.mm-brand-tabs__thumb[data-swap-src] { cursor: pointer; }
.mm-brand-tabs__thumb[data-swap-src]:hover { transform: translateY(-2px); }
.mm-brand-tabs__thumb.is-active { outline-color: var(--mm-green); }
.mm-brand-tabs__thumb img, .mm-brand-tabs__thumb .mm-placeholder { height: 100%; }
.mm-brand-tabs__thumb .mm-placeholder span { font-size: 6px; padding: 1px; }

.mm-brand-tabs__logo { height: 115px; margin-bottom: 22px; }
.mm-brand-tabs__logo img { height: 100%; width: auto; }
.mm-brand-tabs__logo .mm-placeholder { width: 375px; max-width: 100%; height: 100%; border-radius: 8px; }
.mm-brand-tabs__logo .mm-placeholder span { font-size: 8px; padding: 2px; }
.mm-brand-tabs__tagline {
	position: relative; font-weight: 600; font-style: italic; font-size: 19px; line-height: 1.5;
	color: var(--mm-accent); margin: 6px 0 20px; padding-left: 30px;
}
.mm-brand-tabs__tagline::before {
	content: '\201C'; position: absolute; left: 0; top: -10px; font-size: 44px; font-weight: 800;
	font-style: normal; color: var(--mm-accent); opacity: 0.35; line-height: 1;
}
.mm-brand-tabs__description { font-size: 15.5px; line-height: 1.75; margin-bottom: 28px; }

/* ===== Stats (light, not a solid green block) ===== */
.mm-stats { position: relative; overflow: hidden; background: var(--mm-surface); padding: 80px 5vw; border-top: 1px solid var(--mm-border); border-bottom: 1px solid var(--mm-border); }
.mm-stats__inner { position: relative; z-index: 1; max-width: var(--mm-container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; text-align: center; }
.mm-stats__item { position: relative; padding: 8px 24px; }
.mm-stats__item:not(:last-child)::after {
	content: ''; position: absolute; top: 14%; bottom: 14%; right: 0; width: 1px; background: var(--mm-border);
}
.mm-stats__number, .mm-stats__suffix { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--mm-green); }
.mm-stats__suffix { color: var(--mm-gold-text); }
.mm-stats__label { color: var(--mm-body); margin-top: 8px; font-size: 14px; }
@media (max-width: 767px) {
	.mm-stats__item:not(:last-child)::after { display: none; }
}

/* ===== CTA Banner (light, blob decoration, no solid green) ===== */
.mm-cta { position: relative; padding: 90px 5vw 60px; text-align: center; overflow: hidden; background: var(--mm-surface); }
.mm-cta__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.mm-cta__content h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.mm-cta__content p { color: var(--mm-body); margin-bottom: 28px; }

/* ===== Contact ===== */
.mm-contact { position: relative; overflow: hidden; padding: 60px 5vw 100px; }
.mm-contact__inner { position: relative; z-index: 1; max-width: var(--mm-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.mm-contact__details { display: grid; gap: 12px; margin: 20px 0 28px; font-size: 15px; }
.mm-contact__details a { color: var(--mm-body); }
.mm-contact__details a:hover { color: var(--mm-green); }
.mm-contact__map { border-radius: var(--mm-radius-sm); overflow: hidden; box-shadow: var(--mm-shadow); }
.mm-contact__map iframe { width: 100%; height: 260px; border: 0; display: block; }

.mm-contact__form { display: grid; gap: 22px; background: var(--mm-surface-tint); padding: 36px; border-radius: var(--mm-radius); box-shadow: var(--mm-shadow); border: 1px solid var(--mm-border); }
.mm-field { position: relative; }
.mm-field input, .mm-field textarea {
	width: 100%; padding: 14px 4px 8px; border: none; border-bottom: 2px solid rgba(28,35,29,0.15);
	background: transparent; font-family: inherit; font-size: 15px; color: var(--mm-heading);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mm-field input:focus, .mm-field textarea:focus { outline: none; border-color: var(--mm-green); box-shadow: 0 6px 12px -8px rgba(43,90,46,0.4); }
.mm-field label {
	position: absolute; left: 4px; top: 14px; font-size: 15px; color: var(--mm-body); pointer-events: none;
	transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}
.mm-field input:focus + label, .mm-field input:not(:placeholder-shown) + label,
.mm-field textarea:focus + label, .mm-field textarea:not(:placeholder-shown) + label,
.mm-field.has-value label {
	transform: translateY(-14px); font-size: 11px; color: var(--mm-green); font-weight: 700;
}
.mm-honeypot { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.mm-btn--submit { justify-self: start; }
.mm-btn__check { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 3; stroke-dasharray: 30; stroke-dashoffset: 30; display: none; }
.mm-btn--submit.is-success .mm-btn__text { display: none; }
.mm-btn--submit.is-success .mm-btn__check { display: block; animation: mmCheckDraw 0.5s ease forwards; }
@keyframes mmCheckDraw { to { stroke-dashoffset: 0; } }
.mm-form-message { font-size: 14px; min-height: 20px; }
.mm-form-message.is-error { color: #B3261E; }
.mm-form-message.is-success { color: var(--mm-green); }

/* ===== Footer ===== */
.mm-footer { background: var(--mm-heading); color: rgba(255,255,255,0.7); padding: 56px 5vw 24px; }
.mm-footer__inner { max-width: 1300px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; padding-bottom: 32px; }
.mm-footer__tagline { margin-top: 10px; font-size: 14px; max-width: 320px; }
.mm-footer__links, .mm-footer__social { display: flex; gap: 24px; flex-wrap: wrap; }
.mm-footer__links a, .mm-footer__social a { position: relative; color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 600; padding-bottom: 3px; }
.mm-footer__links a::after, .mm-footer__social a::after {
	content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
	background: var(--mm-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.mm-footer__links a:hover::after, .mm-footer__social a:hover::after { transform: scaleX(1); }
.mm-footer__bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; }
.mm-back-to-top {
	width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff;
	display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease, background 0.3s ease;
}
.mm-back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.mm-back-to-top:hover { background: var(--mm-green); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.mm-about__inner, .mm-contact__inner { grid-template-columns: 1fr; }
	.mm-brand-tabs__panel.is-active {
		grid-template-columns: 1fr;
		grid-template-areas: "main" "thumbs" "content";
	}
}
@media (max-width: 767px) {
	.mm-nav { position: fixed; top: var(--mm-header-h); left: 0; right: 0; background: var(--mm-surface);
		flex-direction: column; align-items: flex-start; padding: 24px 5vw; gap: 18px;
		transform: translateY(-16px); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease;
		box-shadow: var(--mm-shadow); }
	.mm-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.mm-nav-toggle { display: flex; }
	.mm-hero__slides { aspect-ratio: 828/1200; min-height: 460px; }
	.mm-footer__bottom { flex-direction: column-reverse; gap: 16px; }
	.mm-brand-tabs__content { text-align: center; }
	.mm-brand-tabs__logo img, .mm-brand-tabs__logo .mm-placeholder { margin: 0 auto; }
	.mm-brand-tabs__tagline { padding-left: 0; }
	.mm-brand-tabs__tagline::before { position: static; display: block; margin-bottom: 4px; }
	.mm-brand-tabs__nav {
		flex-wrap: nowrap; justify-content: flex-start; max-width: 100%;
		overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
	}
	.mm-brand-tabs__nav::-webkit-scrollbar { display: none; }
	.mm-brand-tabs__btn { flex: none; white-space: nowrap; }
}
