:root {
	--mahi-primary: #1979D2;
	--mahi-light: #88D0E7;
	--mahi-tangerine: #F36B3F;
	--mahi-yellow: #F2C94C;
	--mahi-cream: #FFF7EA;
	--mahi-green: #78A99B;
	--mahi-ink: #18313F;
	--mahi-muted: #64727B;
	--mahi-line: #E5E9EA;
	--mahi-shell: 1240px;
	--mahi-sans: "Jost", Arial, sans-serif;
	--mahi-body: "DM Sans", Arial, sans-serif;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body {
	margin: 0;
	background: #fff;
	color: var(--mahi-ink);
	font-family: var(--mahi-body);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	clip: auto !important;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 12px;
	background: var(--mahi-ink);
	color: #fff;
	z-index: 9999;
}
.shell,
.site-header__inner,
.site-footer__inner,
.site-footer__bottom {
	width: min(calc(100% - 64px), var(--mahi-shell));
	margin: 0 auto;
}

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--mahi-sans);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: .98;
	color: var(--mahi-ink);
}
p { line-height: 1.6; }

/* Dynamic announcement ticker */
.announcement-bar {
	position: relative;
	overflow: hidden;
	min-height: 32px;
	background: var(--mahi-ink);
	color: #fff;
}
.announcement-bar__viewport { overflow: hidden; width: 100%; }
.announcement-bar__track {
	display: flex;
	width: max-content;
	min-width: 100%;
	animation: mahi-marquee var(--marquee-duration, 34s) linear infinite;
	will-change: transform;
}
.announcement-bar__group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
}
.announcement-bar__group span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 28px;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1;
	text-transform: uppercase;
}
.announcement-bar__group span::before {
	content: "";
	width: 32px;
	height: 4px;
	margin-right: 11px;
	border-radius: 999px;
	background: var(--mahi-yellow);
}
.announcement-bar:hover .announcement-bar__track { animation-play-state: paused; }
@keyframes mahi-marquee {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.93);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
	border-color: rgba(24,49,63,.08);
	box-shadow: 0 8px 24px rgba(24,49,63,.06);
}
.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 76px;
	gap: 24px;
}
.site-branding { display: flex; align-items: center; }
.site-branding img { display: block; width: auto; max-height: 38px; }
.brand-wordmark {
	font-family: var(--mahi-sans);
	font-size: 1.85rem;
	font-weight: 700;
	letter-spacing: -.09em;
	color: var(--mahi-primary);
	text-decoration: none;
}
.site-navigation { justify-self: center; }
.mahiblu-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mahiblu-menu a {
	position: relative;
	padding: 5px 0;
	font-size: .78rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--mahi-ink);
}
.mahiblu-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: center;
	background: var(--mahi-tangerine);
	transition: transform .2s ease;
}
.mahiblu-menu a:hover::after,
.mahiblu-menu a:focus-visible::after { transform: scaleX(1); }
.header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
}
.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 37px;
	padding: 9px 15px;
	border-radius: 999px;
	background: var(--mahi-primary);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 16px rgba(25,121,210,.16);
	transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(25,121,210,.22); }
.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--mahi-line);
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
}
.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 5px auto;
	border-radius: 999px;
	background: var(--mahi-ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 17px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .77rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--cream { background: var(--mahi-cream); color: var(--mahi-ink); }
.button--cream:hover { box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.button--clear { border-color: rgba(255,255,255,.72); color: #fff; }
.button--clear:hover { background: #fff; color: var(--mahi-ink); }
.button--dark { background: var(--mahi-ink); color: #fff; }
.button--dark:hover { background: var(--mahi-primary); }
.button--blue { background: var(--mahi-primary); color: #fff; }
.button--blue:hover { background: var(--mahi-ink); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--mahi-primary);
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}
.eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}
.eyebrow--light { color: var(--mahi-light); }

.home-fashion { overflow: hidden; }
.section { padding: 88px 0; }

/* HERO */
.hero-mahi {
	position: relative;
	min-height: min(680px, calc(100vh - 105px));
	overflow: hidden;
	background: var(--mahi-ink);
	isolation: isolate;
}
.hero-mahi__media,
.hero-mahi__media img,
.hero-mahi__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.hero-mahi__media {
	z-index: 0;
	transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.025);
	transform-origin: center;
	will-change: transform;
}
.hero-mahi__media img,
.hero-mahi__video { object-fit: cover; object-position: center 38%; }
.hero-mahi__video { z-index: 1; }
.hero-mahi__wash {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(var(--hero-overlay-rgb), var(--hero-overlay-opacity));
	pointer-events: none;
}
.hero-mahi__content {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: inherit;
	padding-top: 64px;
	padding-bottom: 64px;
}
.hero-mahi__copy { max-width: 480px; }
.hero-mahi h1 {
	max-width: 440px;
	font-size: clamp(2.75rem, 4.5vw, 4.25rem);
	font-weight: 500;
	color: #fff;
}
.hero-mahi__copy > p:not(.eyebrow) {
	max-width: 410px;
	margin: 20px 0 0;
	color: rgba(255,255,255,.92);
	font-size: .94rem;
	line-height: 1.6;
}
.hero-mahi__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.mahi-ribbon { border-bottom: 1px solid var(--mahi-line); background: #fff; }
.mahi-ribbon__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 15px 0;
}
.mahi-ribbon__inner span {
	position: relative;
	padding: 0 16px;
	border-right: 1px solid var(--mahi-line);
	color: var(--mahi-ink);
	font-size: .63rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}
.mahi-ribbon__inner span:last-child { border-right: 0; }
.mahi-ribbon__inner span:nth-child(1)::before,
.mahi-ribbon__inner span:nth-child(2)::before,
.mahi-ribbon__inner span:nth-child(3)::before,
.mahi-ribbon__inner span:nth-child(4)::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 8px 1px 0;
	border-radius: 50%;
	vertical-align: middle;
}
.mahi-ribbon__inner span:nth-child(1)::before { background: var(--mahi-primary); }
.mahi-ribbon__inner span:nth-child(2)::before { background: var(--mahi-tangerine); }
.mahi-ribbon__inner span:nth-child(3)::before { background: var(--mahi-yellow); }
.mahi-ribbon__inner span:nth-child(4)::before { background: var(--mahi-green); }

.section-heading--visual {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, .55fr);
	align-items: end;
	gap: 40px;
	margin-bottom: 34px;
}
.section-heading h2 {
	max-width: 600px;
	font-size: clamp(2rem, 3.1vw, 3.2rem);
}
.section-heading > p {
	max-width: 350px;
	margin: 0 0 2px;
	color: var(--mahi-muted);
	font-size: .88rem;
}

/* Collections */
.collections { background: #fff; }
.collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.collection-card {
	overflow: hidden;
	border: 1px solid var(--mahi-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(24,49,63,.04);
}
.collection-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: .82;
	background: #e9ecec;
}
.collection-card__image::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 7px;
	background: var(--card-tone);
}
.collection-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.collection-card:hover .collection-card__image img { transform: scale(1.045); }
.collection-card__content { padding: 15px 16px 17px; }
.collection-card__content p {
	margin: 0 0 6px;
	color: var(--card-tone);
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.collection-card h3 {
	font-size: 1.42rem;
	font-weight: 500;
	line-height: 1.02;
}
.collection-card h3 a { text-decoration: none; }
.collection-card__link {
	display: inline-block;
	margin-top: 11px;
	padding-bottom: 2px;
	border-bottom: 1px solid var(--card-tone);
	color: var(--mahi-ink);
	font-size: .73rem;
	font-weight: 700;
	text-decoration: none;
}
.collection-card__link:hover { color: var(--card-tone); }

/* Product cards */
.products {
	position: relative;
	background: linear-gradient(180deg, #fff 0 10%, var(--mahi-cream) 10% 92%, #fff 92% 100%);
}
.products::before {
	content: "";
	position: absolute;
	right: -72px;
	top: 19%;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: rgba(242,201,76,.34);
}
.products .shell { position: relative; z-index: 1; }
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.product-card { min-width: 0; }
.product-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1.08;
	border-radius: 16px;
	background: #fff;
}
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.product-card:hover img { transform: scale(1.035); }
.product-card__meta { padding: 12px 4px 0; }
.product-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 7px;
	color: var(--mahi-muted);
	font-size: .61rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.product-card__meta span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--chip-tone);
}
.product-card h3 { font-size: 1.22rem; line-height: 1.04; }
.product-card h3 a { text-decoration: none; }
.product-card__meta p { margin: 7px 0 0; color: var(--mahi-muted); font-size: .74rem; }
.section-action { margin-top: 28px; text-align: center; }

/* Editorial */
.editorial { padding-top: 64px; }
.editorial__box {
	display: grid;
	grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
	gap: 34px;
	padding: clamp(28px, 4.3vw, 56px);
	border-radius: 22px;
	background: var(--editorial-tone);
	position: relative;
	overflow: hidden;
}
.editorial__box::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	left: -70px;
	bottom: -78px;
	border-radius: 50%;
	background: var(--mahi-light);
	opacity: .45;
}
.editorial__copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px 0;
}
.editorial__copy h2 { font-size: clamp(2.2rem, 3.4vw, 3.5rem); }
.editorial__copy > p:not(.eyebrow) { margin: 18px 0 22px; color: var(--mahi-muted); font-size: .88rem; }
.editorial__link {
	align-self: flex-start;
	padding-bottom: 3px;
	border-bottom: 2px solid var(--mahi-tangerine);
	font-size: .75rem;
	font-weight: 700;
	text-decoration: none;
}
.editorial__link:hover { color: var(--mahi-primary); }
.editorial__gallery {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	min-height: 470px;
}
.editorial__gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 14px; background: #e8eceb; }
.editorial__gallery img { width: 100%; height: 100%; object-fit: cover; }
.editorial__main { grid-row: span 2; }
.editorial__gallery figcaption {
	position: absolute;
	left: 10px;
	bottom: 10px;
	margin: 0;
	padding: 7px 9px;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: var(--mahi-ink);
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.15;
	text-transform: uppercase;
}

/* Newsletter */
.newest { padding-top: 76px; }
.newest__card {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
	overflow: hidden;
	border: 1px solid var(--mahi-line);
	border-radius: 22px;
	background: #fff;
}
.newest__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 360px;
	padding: clamp(30px, 5vw, 64px);
	background: var(--news-tone);
}
.newest__content::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	right: -42px;
	top: -48px;
	border-radius: 50%;
	background: var(--mahi-tangerine);
	opacity: .9;
}
.newest__content h2 { position: relative; font-size: clamp(2.05rem, 3.6vw, 3.45rem); max-width: 500px; }
.newest__content > p:not(.eyebrow) { position: relative; max-width: 460px; margin: 17px 0 22px; color: var(--mahi-muted); font-size: .88rem; }
.newest__content .button, .newsletter-form { position: relative; align-self: flex-start; }
.newest__image { min-height: 360px; margin: 0; }
.newest__image img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
	width: min(100%, 370px);
	min-height: 44px;
	padding: 10px 13px;
	border: 1px solid rgba(24,49,63,.16);
	border-radius: 10px;
	background: rgba(255,255,255,.76);
}
.newsletter-form input[type="submit"],
.newsletter-form button {
	min-height: 42px;
	margin-top: 8px;
	padding: 10px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--mahi-primary);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	cursor: pointer;
}

/* Footer */
.site-footer {
	margin-top: 92px;
	padding: 0 0 25px;
	border-top: 1px solid var(--mahi-line);
	background: #fff;
}
.site-footer__palette { display: flex; height: 10px; }
.site-footer__palette span { flex: 1; }
.site-footer__palette span:nth-child(1) { background: var(--mahi-primary); }
.site-footer__palette span:nth-child(2) { background: var(--mahi-light); }
.site-footer__palette span:nth-child(3) { background: var(--mahi-yellow); }
.site-footer__palette span:nth-child(4) { background: var(--mahi-tangerine); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.25fr repeat(3, .78fr) 1.05fr;
	gap: 34px;
	padding: 55px 0 42px;
}
.site-footer__logo { display: flex; align-items: center; min-height: 42px; margin-bottom: 13px; }
.site-footer__logo .custom-logo-link { display: inline-flex; align-items: center; }
.site-footer__logo .custom-logo { display: block; width: auto; max-width: 180px; max-height: 46px; }
.site-footer__wordmark {
	display: inline-block;
	font-family: var(--mahi-sans);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -.09em;
	color: var(--mahi-primary);
	text-decoration: none;
}
.site-footer__brand > p { max-width: 238px; margin: 0; color: var(--mahi-muted); font-size: .76rem; line-height: 1.65; }
.site-footer h2 { margin: 2px 0 13px; font-family: var(--mahi-body); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-menu { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-menu a, .site-footer__contact a { color: var(--mahi-muted); font-size: .75rem; line-height: 1.4; text-decoration: none; }
.footer-menu a:hover, .site-footer__contact a:hover { color: var(--mahi-primary); }
.site-footer__contact { display: grid; align-content: start; gap: 8px; }
.site-footer__contact p { margin: 0; color: var(--mahi-muted); font-size: .75rem; line-height: 1.5; }
.site-footer__socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.site-footer__socials a {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--mahi-line);
	border-radius: 50%;
	color: var(--mahi-ink);
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.site-footer__socials a:hover { color: var(--mahi-primary); border-color: var(--mahi-primary); transform: translateY(-2px); }
.site-footer__socials svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-footer__socials a[aria-label="Pinterest"] svg { fill: currentColor; stroke: none; }
.site-footer__whatsapp { display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; }
.site-footer__whatsapp svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 0; border-top: 1px solid var(--mahi-line); color: #98A3A8; font-size: .63rem; }

.generic-page { padding: 110px 0; }
.generic-page__article { max-width: 820px; padding: 44px; border: 1px solid var(--mahi-line); background: #fff; }
.generic-page__article h1 { font-size: 2.7rem; }
.post-card { padding: 16px 0; border-top: 1px solid var(--mahi-line); }

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
	.site-footer__inner { grid-template-columns: 1.2fr repeat(3, .75fr); }
	.site-footer__contact { grid-column: span 4; }
	.collection-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.editorial__box { grid-template-columns: 1fr; }
	.editorial__copy { max-width: 640px; padding-bottom: 0; }
}

@media (max-width: 760px) {
	.shell,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom { width: min(calc(100% - 32px), var(--mahi-shell)); }
	.announcement-bar { min-height: 29px; }
	.announcement-bar__group span { min-height: 29px; padding: 7px 18px; font-size: .54rem; letter-spacing: .11em; }
	.announcement-bar__group span::before { width: 22px; height: 3px; margin-right: 8px; }
	.site-header__inner { grid-template-columns: 1fr auto; min-height: 66px; }
	.site-branding img { max-height: 31px; }
	.site-navigation {
		position: fixed;
		top: 98px;
		left: 16px;
		right: 16px;
		z-index: 100;
		padding: 15px;
		border: 1px solid var(--mahi-line);
		border-radius: 16px;
		background: rgba(255,255,255,.98);
		box-shadow: 0 16px 36px rgba(24,49,63,.11);
		opacity: 0;
		transform: translateY(-10px);
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease;
	}
	.site-navigation.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.mahiblu-menu { display: grid; gap: 12px; }
	.mahiblu-menu a { display: inline-block; font-size: .9rem; }
	.header-cta { display: none; }
	.menu-toggle { display: block; }
	.hero-mahi { min-height: 590px; }
	.hero-mahi__media img, .hero-mahi__video { object-position: 50% center; }
	.hero-mahi__wash { background: rgba(var(--hero-overlay-rgb), var(--hero-overlay-opacity)); }
	.hero-mahi__content { justify-content: flex-end; padding: 42px 0 32px; }
	.hero-mahi h1 { max-width: 360px; font-size: clamp(2.35rem, 10.6vw, 3.2rem); }
	.hero-mahi__copy > p:not(.eyebrow) { max-width: 260px; margin-top: 14px; font-size: .86rem; line-height: 1.58; }
	.hero-mahi__badge { display: none; }
	.mahi-ribbon__inner { display: flex; overflow-x: auto; gap: 0; padding: 12px 0; scroll-snap-type: x mandatory; }
	.mahi-ribbon__inner span { flex: 0 0 auto; min-width: 165px; padding: 0 12px; scroll-snap-align: center; font-size: .56rem; }
	.section { padding: 68px 0; }
	.section-heading--visual { display: block; margin-bottom: 26px; }
	.section-heading h2 { font-size: clamp(1.95rem, 8.7vw, 2.75rem); }
	.section-heading > p { margin-top: 14px; font-size: .82rem; }
	.collection-grid { display: flex; overflow-x: auto; gap: 13px; padding-bottom: 4px; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.collection-grid::-webkit-scrollbar { display: none; }
	.collection-card { flex: 0 0 73vw; scroll-snap-align: start; }
	.collection-card__image { aspect-ratio: .9; }
	.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
	.product-card h3 { font-size: 1.12rem; }
	.products { background: linear-gradient(180deg, #fff 0 4%, var(--mahi-cream) 4% 95%, #fff 95% 100%); }
	.editorial { padding-top: 46px; }
	.editorial__box { gap: 24px; padding: 26px 20px; border-radius: 18px; }
	.editorial__copy h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
	.editorial__gallery { min-height: 500px; gap: 10px; }
	.editorial__gallery figcaption { font-size: .52rem; }
	.newest { padding-top: 58px; }
	.newest__card { grid-template-columns: 1fr; border-radius: 18px; }
	.newest__content { min-height: 0; padding: 34px 24px; }
	.newest__content h2 { font-size: clamp(2rem, 8.5vw, 2.75rem); }
	.newest__image { min-height: 300px; }
	.site-footer { margin-top: 68px; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 18px; padding: 40px 0 32px; }
	.site-footer__brand, .site-footer__contact { grid-column: span 2; }
	.site-footer__bottom { display: grid; gap: 9px; }
}

@media (max-width: 430px) {
	.hero-mahi { min-height: 560px; }
	.hero-mahi__actions { gap: 9px; }
	.button { min-height: 41px; padding-inline: 14px; font-size: .72rem; }
	.product-card__image { aspect-ratio: .88; }
	.product-card__meta { padding-top: 10px; }
	.product-card__meta span { font-size: .56rem; }
	.editorial__gallery { min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
	.hero-mahi__video { display: none !important; }
	.hero-mahi__media { transform: none !important; }
	*, *::before, *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Video hero integrity: no image fallback is rendered while a video is configured. */
.hero-mahi--video .hero-mahi__media--video {
	background: var(--mahi-ink);
}
.hero-mahi--video .hero-mahi__video {
	background: var(--mahi-ink);
}
