/* ============================================================
   MAISON MÈRE — main.css
   Palette: #f8efe2 cream · #eabd53 gold · #885723 brown · #feec91 light gold
   ============================================================ */

:root {
	--mm-cream: #f8efe2;
	--mm-cream-2: #fdf7ec;
	--mm-gold: #eabd53;
	--mm-gold-light: #feec91;
	--mm-brown: #885723;
	--mm-ink: #3d2a16;
	--mm-serif: "Lucida Bright", "Lora", Georgia, serif;
	--mm-script: "Cormorant Garamond", "Lucida Bright", serif;
	--mm-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--mm-serif);
	background: var(--mm-cream);
	color: var(--mm-ink);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.mm-container { width: min(1200px, 92%); margin-inline: auto; }
.mm-section { padding: clamp(64px, 10vw, 128px) 0; }

.mm-h2 {
	font-size: clamp(1.7rem, 4.5vw, 2.9rem);
	font-weight: 500;
	letter-spacing: .01em;
	line-height: 1.25;
	color: var(--mm-ink);
}
.mm-sub { margin-top: 14px; color: #7a6448; max-width: 620px; }
.mm-eyebrow {
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--mm-brown);
	margin-bottom: 14px;
}
.mm-script {
	font-family: var(--mm-script);
	font-style: italic;
	color: var(--mm-brown);
}

/* ---------- Buttons ---------- */
.mm-btn {
	display: inline-block;
	padding: 14px 34px;
	font-size: .82rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	border-radius: 2px;
	transition: all .45s var(--mm-ease);
	text-align: center;
}
.mm-btn-solid {
	background: linear-gradient(120deg, var(--mm-brown), #a8752f 60%, var(--mm-gold));
	background-size: 200% 100%;
	color: #fff;
}
.mm-btn-solid:hover { background-position: 100% 0; box-shadow: 0 12px 32px rgba(136, 87, 35, .28); transform: translateY(-2px); }
.mm-btn-ghost { border: 1px solid rgba(136, 87, 35, .45); color: var(--mm-brown); }
.mm-btn-ghost:hover { background: var(--mm-brown); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.mm-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 90;
	transition: background .5s, box-shadow .5s, transform .5s;
}
body.admin-bar .mm-header { top: 32px; }
.mm-header.is-scrolled {
	background: rgba(248, 239, 226, .88);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(136, 87, 35, .12);
}
.mm-header-inner {
	width: min(1320px, 94%);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}
.mm-logo { display: flex; align-items: center; gap: 10px; }
.mm-logo-mark { width: 40px; height: auto; }
.mm-logo-text { font-size: 1.02rem; letter-spacing: .26em; color: var(--mm-brown); white-space: nowrap; }

.mm-nav { display: flex; align-items: center; gap: 34px; }
.mm-menu { display: flex; gap: 30px; }
li { list-style: none; }
li::marker { content: none; }
.mm-menu a {
	font-size: .8rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--mm-ink);
	position: relative;
	padding: 6px 0;
}
.mm-menu a::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--mm-gold);
	transition: width .4s var(--mm-ease);
}
.mm-menu a:hover::after { width: 100%; }

.mm-header-actions { display: flex; align-items: center; gap: 14px; }
.mm-cart { position: relative; display: inline-flex; color: var(--mm-brown); }
.mm-cart svg { width: 24px; height: 24px; }
.mm-cart-count {
	position: absolute;
	top: -7px;
	inset-inline-end: -9px;
	background: var(--mm-gold);
	color: #4a3010;
	font-size: .62rem;
	min-width: 17px;
	height: 17px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: sans-serif;
}
.mm-cart-count[data-count="0"] { display: none; }

.mm-langs { display: flex; gap: 10px; }
.mm-langs ul { display: flex; gap: 10px; align-items: center; }
.mm-langs li { list-style: none !important; margin: 0; }
.mm-langs a { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mm-brown); border: 1px solid rgba(136,87,35,.3); padding: 3px 10px; border-radius: 20px; }
.mm-langs .current-lang a { background: var(--mm-brown); color: #fff; }

/* Burger */
.mm-burger { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; z-index: 101; }
.mm-burger span { display: block; width: 24px; height: 1.6px; background: var(--mm-brown); margin-inline: auto; transition: .4s var(--mm-ease); }
.mm-burger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.mm-burger.is-open span:nth-child(2) { opacity: 0; }
.mm-burger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- Hero slider ---------- */
.mm-hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
}
.mm-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 110px 0 100px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s var(--mm-ease), visibility 1.1s;
	z-index: 1;
}
.mm-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.mm-hero-media { position: absolute; inset: 0; }
.mm-hero-media picture { display: block; width: 100%; height: 100%; }
.mm-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
	will-change: transform;
}
.mm-slide.is-active .mm-hero-img { animation: mm-kenburns 9s ease-out forwards; }
@keyframes mm-kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }

/* veil per tone */
.mm-hero-veil { position: absolute; inset: 0; }
.mm-slide-dark .mm-hero-veil { background: linear-gradient(to right, rgba(42, 29, 16, .74) 0%, rgba(42, 29, 16, .34) 34%, transparent 62%); }
.mm-slide-light .mm-hero-veil { background: linear-gradient(to right, rgba(248, 239, 226, .92) 0%, rgba(248, 239, 226, .5) 32%, transparent 58%); }
[dir="rtl"] .mm-slide-dark .mm-hero-veil { background: linear-gradient(to left, rgba(42, 29, 16, .74) 0%, rgba(42, 29, 16, .34) 34%, transparent 62%); }
[dir="rtl"] .mm-slide-light .mm-hero-veil { background: linear-gradient(to left, rgba(248, 239, 226, .92) 0%, rgba(248, 239, 226, .5) 32%, transparent 58%); }

.mm-hero-copy {
	position: relative;
	z-index: 4;
	max-width: 540px;
	margin-inline-start: max(6vw, calc((100vw - 1320px) / 2));
	padding-inline-end: 24px;
}
.mm-hero-h { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 500; line-height: 1.25; }
.mm-hero-tag { display: inline-block; font-size: clamp(1.7rem, 4.4vw, 3rem); font-weight: 500; margin-top: 4px; }
.mm-hero-sub { margin-top: 16px; font-size: 1.05rem; max-width: 420px; }
.mm-hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* tone-specific text colours */
.mm-slide-dark .mm-hero-h { color: #fdf4e6; }
.mm-slide-dark .mm-hero-tag { color: var(--mm-gold); }
.mm-slide-dark .mm-hero-sub { color: #ecd9b8; }
.mm-slide-dark .mm-btn-ghost { border-color: rgba(253, 244, 230, .55); color: #fdf4e6; }
.mm-slide-dark .mm-btn-ghost:hover { background: #fdf4e6; color: var(--mm-brown); }
.mm-slide-light .mm-hero-h { color: var(--mm-ink); }
.mm-slide-light .mm-hero-tag { color: var(--mm-brown); }
.mm-slide-light .mm-hero-sub { color: #6e5a41; }

.mm-mist { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }

/* dots */
.mm-hero-dots {
	position: absolute;
	bottom: 26px;
	inset-inline-start: max(6vw, calc((100vw - 1320px) / 2));
	z-index: 6;
	display: flex;
	gap: 10px;
}
.mm-hero-dot {
	width: 30px; height: 3px;
	border: 0; padding: 0;
	background: rgba(136, 87, 35, .3);
	cursor: pointer;
	transition: background .4s, width .4s;
}
.mm-slide-dark ~ .mm-hero-dots .mm-hero-dot { background: rgba(253, 244, 230, .35); }
.mm-hero-dot.is-active { background: var(--mm-gold); width: 46px; }

.mm-hero-scroll {
	position: absolute;
	bottom: 22px;
	inset-inline: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--mm-brown);
	z-index: 4;
}
.mm-hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--mm-brown), transparent); animation: mm-drip 2.2s infinite var(--mm-ease); }
.mm-hero-scroll-txt { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; opacity: .75; }
@keyframes mm-drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.mm-marquee {
	border-block: 1px solid rgba(136, 87, 35, .18);
	padding: 16px 0;
	overflow: hidden;
	background: var(--mm-cream-2);
}
.mm-marquee-track { white-space: nowrap; will-change: transform; }
.mm-marquee-track span {
	font-size: .82rem;
	letter-spacing: .42em;
	color: var(--mm-brown);
	text-transform: uppercase;
}

/* ---------- Mood ---------- */
.mm-mood { text-align: center; }
.mm-mood-grid {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.mm-mood-card {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 3 / 3.6;
}
.mm-mood-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--mm-ease), filter 1.2s;
}
.mm-mood-card:hover img { transform: scale(1.07); filter: saturate(1.08); }
.mm-mood-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(61, 42, 22, .45), transparent 55%);
}
.mm-mood-card span {
	position: absolute;
	bottom: 18px;
	inset-inline: 0;
	z-index: 2;
	color: #fff;
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	letter-spacing: .12em;
}
.mm-mood-link { margin-top: 30px; }
.mm-mood-link a { color: var(--mm-brown); letter-spacing: .14em; font-size: .85rem; text-transform: uppercase; border-bottom: 1px solid var(--mm-gold); padding-bottom: 3px; }

/* ---------- Fragrances ---------- */
.mm-frags { background: var(--mm-cream-2); }
.mm-frag-grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 3vw, 36px);
}
.mm-frag-card {
	background: #fff;
	border: 1px solid rgba(136, 87, 35, .1);
	border-radius: 6px;
	padding: 26px 22px 30px;
	text-align: center;
	transition: transform .6s var(--mm-ease), box-shadow .6s;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.mm-frag-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(136, 87, 35, .16); }
.mm-frag-img { width: 100%; overflow: hidden; border-radius: 4px; background: var(--mm-cream); }
.mm-frag-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.4s var(--mm-ease); }
.mm-frag-card:hover .mm-frag-img img { transform: scale(1.06); }
.mm-frag-card h3 { margin-top: 16px; font-size: 1.25rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.mm-frag-notes { font-size: .85rem; color: #8b755a; min-height: 2.4em; }
.mm-frag-price { color: var(--mm-brown); font-size: 1.05rem; letter-spacing: .04em; }
.mm-frag-price del { opacity: .5; margin-inline-end: 8px; }
.mm-frag-cta {
	margin-top: 10px;
	font-size: .74rem;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--mm-brown);
	border: 1px solid rgba(136, 87, 35, .35);
	padding: 10px 26px;
	border-radius: 2px;
	transition: .4s;
}
.mm-frag-card:hover .mm-frag-cta { background: var(--mm-brown); color: #fff; }

/* ---------- Offer ---------- */
.mm-offer {
	background:
		radial-gradient(70% 90% at 85% 10%, rgba(254, 236, 145, .55), transparent 60%),
		linear-gradient(135deg, #f4e3c8, var(--mm-cream));
}
.mm-offer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(28px, 5vw, 70px);
}
.mm-offer-media img { border-radius: 6px; box-shadow: 0 40px 80px rgba(136, 87, 35, .22); }
.mm-offer-copy .mm-h2 em { font-family: var(--mm-script); font-style: italic; color: var(--mm-brown); }
.mm-offer-copy p { margin: 18px 0 28px; max-width: 480px; }

/* ---------- Story ---------- */
.mm-story-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.mm-story-head .mm-eyebrow { display: block; }
.mm-story-row {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(28px, 5vw, 70px);
	margin-bottom: clamp(40px, 6vw, 80px);
}
.mm-story-row-rev { direction: rtl; }
.mm-story-row-rev > * { direction: ltr; }
[dir="rtl"] .mm-story-row-rev { direction: ltr; }
[dir="rtl"] .mm-story-row-rev > * { direction: rtl; }
.mm-story-media img { width: 100%; border-radius: 8px; box-shadow: 0 40px 80px rgba(136, 87, 35, .2); aspect-ratio: 16/10; object-fit: cover; }
.mm-story-row-rev .mm-story-media img { aspect-ratio: 4/5; }
.mm-story-kicker { display: inline-block; font-size: .82rem; letter-spacing: .28em; text-transform: uppercase; color: var(--mm-brown); margin-bottom: 12px; }
.mm-story-text h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; }
.mm-story-text p { margin: 16px 0 26px; color: #6e5a41; max-width: 440px; }
.mm-story-quote { text-align: center; font-size: clamp(1.4rem, 3.4vw, 2.2rem); color: var(--mm-brown); margin-top: 10px; }

/* ---------- Softer future banner ---------- */
.mm-banner2 {
	position: relative;
	min-height: 72svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #3a2a19;
}
.mm-banner2-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.mm-banner2::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(42, 29, 16, .72) 0%, rgba(42, 29, 16, .3) 40%, transparent 65%); }
[dir="rtl"] .mm-banner2::after { background: linear-gradient(to left, rgba(42, 29, 16, .72) 0%, rgba(42, 29, 16, .3) 40%, transparent 65%); }
.mm-banner2-copy {
	position: relative;
	z-index: 2;
	max-width: 480px;
	margin-inline-start: max(6vw, calc((100vw - 1320px) / 2));
	padding: 90px 24px 90px 0;
	color: #f1e2c8;
}
.mm-banner2-copy p { margin: 18px 0 28px; }
.mm-btn-gold { background: var(--mm-gold); color: #4a3010; }
.mm-btn-gold:hover { background: var(--mm-gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }

/* ---------- Quote (dark) ---------- */
.mm-quote {
	position: relative;
	background: #2a1d10;
	overflow: hidden;
	text-align: center;
}
.mm-quote-mist {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: screen;
	opacity: .8;
}
.mm-quote-txt {
	position: relative;
	z-index: 2;
	color: #f6e8cf;
	font-size: clamp(1.4rem, 3.6vw, 2.4rem);
	font-weight: 400;
	line-height: 1.5;
	max-width: 820px;
	margin-inline: auto;
	font-style: italic;
	font-family: var(--mm-script);
}

/* ---------- Trust ---------- */
.mm-trust { background: var(--mm-cream-2); border-top: 1px solid rgba(136,87,35,.08); }
.mm-trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	text-align: center;
}
.mm-trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--mm-brown); }
.mm-trust-item svg { width: 34px; height: 34px; opacity: .85; }
.mm-trust-item span { font-size: .82rem; letter-spacing: .06em; color: var(--mm-ink); }

/* ---------- Footer ---------- */
.mm-footer { background: #221708; color: #d8c3a3; padding: 70px 0 30px; }
.mm-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.mm-footer-brand img { width: 74px; margin-bottom: 18px; filter: brightness(1.4); }
.mm-footer h4 { color: var(--mm-gold-light); font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.mm-footer-menu li { margin-bottom: 10px; }
.mm-footer-menu a { font-size: .9rem; opacity: .85; }
.mm-footer-menu a:hover { color: var(--mm-gold); }
.mm-footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(234, 189, 83, .2); font-size: .78rem; letter-spacing: .06em; opacity: .7; text-align: center; }

/* ---------- Reveal base states ---------- */
.mm-reveal { opacity: 0; transform: translateY(34px); }
html.no-js .mm-reveal, body.mm-no-motion .mm-reveal { opacity: 1; transform: none; }

/* ---------- WooCommerce polish ---------- */
.mm-woo-wrap { padding: 140px 0 90px; }
.mm-woo-wrap .mm-container > .woocommerce-products-header h1,
.mm-woo-wrap h1.product_title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; letter-spacing: .04em; }
ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0 0 !important; padding: 0 !important; }
ul.products::before, ul.products::after { display: none !important; }
ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	background: #fff;
	border: 1px solid rgba(136, 87, 35, .1);
	border-radius: 6px;
	padding: 20px !important;
	text-align: center;
	transition: transform .5s var(--mm-ease), box-shadow .5s;
}
ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(136, 87, 35, .15); }
ul.products li.product img { border-radius: 4px; margin-bottom: 14px !important; aspect-ratio: 4/5; object-fit: cover; }
ul.products li.product .woocommerce-loop-product__title { font-size: 1.1rem !important; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; padding: 0 !important; }
ul.products li.product .price { color: var(--mm-brown) !important; font-size: 1rem !important; display: block; margin: 8px 0 14px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.wc-block-components-button, .single_add_to_cart_button {
	background: linear-gradient(120deg, var(--mm-brown), #a8752f 60%, var(--mm-gold)) !important;
	background-size: 200% 100% !important;
	color: #fff !important;
	border-radius: 2px !important;
	font-family: var(--mm-serif) !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
	font-size: .78rem !important;
	padding: 13px 28px !important;
	border: 0 !important;
	transition: all .45s var(--mm-ease) !important;
	font-weight: 500 !important;
}
.woocommerce a.button:hover, .single_add_to_cart_button:hover { background-position: 100% 0 !important; box-shadow: 0 10px 26px rgba(136, 87, 35, .3) !important; }
.woocommerce div.product p.price { color: var(--mm-brown); font-size: 1.4rem; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent; border: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--mm-gold); }
.woocommerce-message, .woocommerce-info {
	border-top-color: var(--mm-gold) !important;
	background: var(--mm-cream-2) !important;
	color: var(--mm-ink) !important;
	font-family: var(--mm-serif);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--mm-brown) !important; }

/* ---------- Page fade-in ---------- */
.mm-page-fade { position: fixed; inset: 0; background: var(--mm-cream); z-index: 999; pointer-events: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.mm-trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
	.mm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.mm-burger { display: flex; }
	.mm-nav {
		position: fixed;
		inset-block: 0;
		inset-inline-start: 0;
		width: min(340px, 84vw);
		background: var(--mm-cream-2);
		box-shadow: 20px 0 60px rgba(61, 42, 22, .18);
		transform: translateX(-104%);
		transition: transform .6s var(--mm-ease);
		z-index: 100;
		padding: 110px 34px 40px;
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	[dir="rtl"] .mm-nav { transform: translateX(104%); }
	.mm-nav.is-open { transform: translateX(0) !important; }
	.mm-menu { flex-direction: column; gap: 22px; }
	.mm-menu a { font-size: 1rem; letter-spacing: .24em; }
	.mm-nav-overlay { position: fixed; inset: 0; background: rgba(42, 29, 16, .4); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .5s; z-index: 95; }
	.mm-nav-overlay.is-open { opacity: 1; pointer-events: all; }
	.mm-logo-text { font-size: .9rem; }

	.mm-mood-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.mm-frag-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
	.mm-offer-inner { grid-template-columns: 1fr; }
	.mm-story-row, .mm-story-row-rev { grid-template-columns: 1fr; direction: ltr; }
	.mm-story-row .mm-story-media { order: -1; }
	.mm-story-text { text-align: center; }
	.mm-story-text p { margin-inline: auto; }
	ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
	.mm-footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
	.mm-hero { min-height: 100svh; }
	.mm-slide { flex-direction: column; justify-content: flex-start; padding: 82px 0 60px; }
	.mm-hero-media { position: relative; inset: auto; height: 56svh; flex: 0 0 auto; }
	.mm-hero-img { object-position: 60% 26%; }
	.mm-slide-light .mm-hero-veil,
	.mm-slide-dark .mm-hero-veil {
		background: linear-gradient(to bottom, transparent 55%, rgba(248, 239, 226, .4) 78%, var(--mm-cream) 100%) !important;
	}
	.mm-hero-copy { margin: 0 auto; padding: 26px 7% 0; text-align: center; max-width: 100%; }
	.mm-slide-dark .mm-hero-h, .mm-slide-light .mm-hero-h { color: var(--mm-ink); }
	.mm-slide-dark .mm-hero-tag, .mm-slide-light .mm-hero-tag { color: var(--mm-brown); }
	.mm-slide-dark .mm-hero-sub, .mm-slide-light .mm-hero-sub { color: #6e5a41; }
	.mm-slide-dark .mm-btn-ghost { border-color: rgba(136, 87, 35, .45); color: var(--mm-brown); }
	.mm-hero-cta { justify-content: center; }
	.mm-hero-cta .mm-btn { width: 100%; }
	.mm-hero-dots { inset-inline-start: 0; justify-content: center; width: 100%; bottom: 14px; }
	.mm-slide-dark ~ .mm-hero-dots .mm-hero-dot { background: rgba(136,87,35,.3); }
	.mm-trust-grid { grid-template-columns: repeat(2, 1fr); }
	ul.products { grid-template-columns: 1fr !important; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.mm-reveal { opacity: 1 !important; transform: none !important; }
	.mm-marquee-track { animation: none !important; }
}
