/* =========================================================================
   MV Noodles — Saffron Eatables
   Design language: the pack itself. Yellow film, red brush, black seal,
   green veg mark. Everything is outlined and popped like a sticker on a
   shop window, because that is where this brand actually lives.
   ========================================================================= */

/* -------------------------------------------------------------------------
   01. Tokens
   ---------------------------------------------------------------------- */
:root {
	--mv-yellow: #ffc61a;
	--mv-yellow-2: #ffd75e;
	--mv-yellow-3: #fff0bd;
	--mv-red: #e01f26;
	--mv-red-2: #b0141a;
	--mv-orange: #ff7a1a;
	--mv-ink: #17110a;
	--mv-ink-soft: #4b4034;
	--mv-paper: #fff6e3;
	--mv-cream: #fffbf1;
	--mv-white: #ffffff;
	--mv-veg: #1e8a3c;

	--mv-line: 3px solid var(--mv-ink);
	--mv-line-thin: 2px solid var(--mv-ink);

	--r-xl: 40px;
	--r-lg: 28px;
	--r-md: 18px;
	--r-sm: 12px;
	--r-pill: 999px;

	--pop: 6px 6px 0 var(--mv-ink);
	--pop-sm: 4px 4px 0 var(--mv-ink);
	--pop-lg: 10px 10px 0 var(--mv-ink);
	--pop-red: 6px 6px 0 var(--mv-red);

	--wrap: 1200px;
	--wrap-narrow: 780px;
	--gap: clamp(18px, 2.4vw, 30px);
	--sec-y: clamp(56px, 8vw, 108px);

	--font-display: "Anton", "Arial Black", system-ui, sans-serif;
	--font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* -------------------------------------------------------------------------
   02. Reset
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--mv-cream);
	color: var(--mv-ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 500;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .01em;
	line-height: .98;
	margin: 0 0 .45em;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }

button { font: inherit; color: inherit; }

table { border-collapse: collapse; width: 100%; }

:focus-visible {
	outline: 3px solid var(--mv-red);
	outline-offset: 3px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	clip: rect(0 0 0 0); clip-path: inset(50%);
	overflow: hidden; white-space: nowrap;
}

.skip-link {
	position: absolute; top: 8px; left: 8px; z-index: 999;
	background: var(--mv-ink); color: var(--mv-yellow);
	padding: 12px 20px; border-radius: var(--r-pill);
}
.skip-link:focus { clip: auto; clip-path: none; width: auto; height: auto; }

/* -------------------------------------------------------------------------
   03. Layout
   ---------------------------------------------------------------------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 40px, var(--wrap-narrow)); }

.section { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.section--paper { background: var(--mv-paper); }
.section--yellow { background: var(--mv-yellow); }
.section--ink { background: var(--mv-ink); color: var(--mv-yellow-3); }
.section--ink h2, .section--ink h3 { color: var(--mv-white); }
.section--ink a { color: var(--mv-yellow); }

.site-main { position: relative; }

/* Confetti of dots on the plain cream sections, drawn not loaded. */
.section:not(.section--ink)::before {
	content: "";
	position: absolute; inset: 0;
	background-image: radial-gradient(currentColor 1.6px, transparent 1.6px);
	background-size: 26px 26px;
	color: var(--mv-ink);
	opacity: .045;
	pointer-events: none;
}

/* -------------------------------------------------------------------------
   04. Section heads
   ---------------------------------------------------------------------- */
.sec-head { position: relative; margin-bottom: clamp(28px, 4vw, 52px); max-width: 46ch; }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-head__title, .section__title {
	font-size: clamp(30px, 4.4vw, 54px);
	margin: 0 0 .35em;
}
.sec-head__text { font-size: clamp(16px, 1.5vw, 19px); color: var(--mv-ink-soft); margin: 0; }
.section--ink .sec-head__text { color: #cbbfae; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	background: var(--mv-red); color: #fff;
	border: var(--mv-line-thin); border-radius: var(--r-pill);
	padding: 7px 16px 7px 12px;
	margin: 0 0 18px;
	box-shadow: var(--pop-sm);
	transform: rotate(-1.5deg);
}
.sec-head--center .eyebrow { transform: rotate(1.5deg); }
.eyebrow__mark { width: 10px; height: 10px; border-radius: 50%; background: var(--mv-yellow); border: 2px solid var(--mv-ink); }
.eyebrow--on-dark { background: var(--mv-yellow); color: var(--mv-ink); }
.eyebrow--on-dark .eyebrow__mark { background: var(--mv-red); }

/* -------------------------------------------------------------------------
   05. Stickers and decorative shapes
   ---------------------------------------------------------------------- */
.sticker {
	display: inline-block;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: clamp(15px, 1.6vw, 19px);
	letter-spacing: .02em;
	padding: 9px 20px;
	border: var(--mv-line);
	border-radius: var(--r-pill);
	box-shadow: var(--pop-sm);
	transform: rotate(-2.5deg);
	margin-bottom: 20px;
}
.sticker--yellow { background: var(--mv-yellow); }
.sticker--red { background: var(--mv-red); color: #fff; }
.sticker--ink { background: var(--mv-ink); color: var(--mv-yellow); }
.sticker--white { background: #fff; }
.sticker--center { display: table; margin-inline: auto; transform: rotate(2deg); }

.deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
	color: var(--mv-ink);
	opacity: .1;
}
.deco svg { width: 100%; height: auto; display: block; }
.section--yellow .deco { color: var(--mv-red); opacity: .18; }
.section--ink .deco { color: var(--mv-yellow); opacity: .13; }

.deco--tl { top: -20px; left: -30px; width: clamp(120px, 16vw, 230px); transform: rotate(-12deg); }
.deco--tr { top: -10px; right: -30px; width: clamp(110px, 14vw, 200px); transform: rotate(14deg); }
.deco--bl { bottom: -30px; left: -20px; width: clamp(120px, 15vw, 210px); transform: rotate(8deg); }
.deco--br { bottom: -25px; right: -25px; width: clamp(110px, 14vw, 200px); transform: rotate(-10deg); }

/* -------------------------------------------------------------------------
   06. Dividers — pack seal tear and the softer wave
   ---------------------------------------------------------------------- */
.mv-tear, .mv-wave {
	position: absolute; left: 0; right: 0; bottom: -1px;
	height: 26px; z-index: 2; pointer-events: none;
}
.mv-tear--flip, .mv-wave--flip { bottom: auto; top: -1px; transform: scaleY(-1); }

.mv-tear {
	--tear: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20' preserveAspectRatio='none'%3E%3Cpath d='M0 20V8l7.5 6L15 8l7.5 6L30 8l7.5 6L45 8l7.5 6L60 8l7.5 6L75 8l7.5 6L90 8l7.5 6L105 8l7.5 6L120 8v12z' fill='%23000'/%3E%3C/svg%3E");
	-webkit-mask-image: var(--tear); mask-image: var(--tear);
	-webkit-mask-size: 120px 100%; mask-size: 120px 100%;
	-webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
}
.mv-wave {
	height: clamp(30px, 4vw, 56px);
	--wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60V26c100-26 200-26 300 0s200 26 300 0 200-26 300 0 200 26 300 0v34z' fill='%23000'/%3E%3C/svg%3E");
	-webkit-mask-image: var(--wave); mask-image: var(--wave);
	-webkit-mask-size: 100% 100%; mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.mv-tear--paper, .mv-wave--paper { background: var(--mv-paper); }
.mv-tear--white, .mv-wave--white { background: var(--mv-white); }
.mv-tear--cream, .mv-wave--cream { background: var(--mv-cream); }
.mv-tear--ink, .mv-wave--ink { background: var(--mv-ink); }
.mv-tear--yellow, .mv-wave--yellow { background: var(--mv-yellow); }

/* -------------------------------------------------------------------------
   07. Buttons
   ---------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 16px; letter-spacing: .03em;
	padding: 14px 26px;
	border: var(--mv-line);
	border-radius: var(--r-pill);
	background: var(--mv-white);
	color: var(--mv-ink);
	text-decoration: none;
	cursor: pointer;
	box-shadow: var(--pop-sm);
	transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--pop); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--mv-ink); }
.btn .mv-icon { width: 20px; height: 20px; }

.btn--lg { padding: 17px 32px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }
.btn--red { background: var(--mv-red); color: #fff; }
.btn--yellow { background: var(--mv-yellow); }
.btn--ink { background: var(--mv-ink); color: var(--mv-yellow); }
.btn--ghost { background: transparent; }
.btn--ghost-light { background: transparent; color: #fff; border-color: #fff; box-shadow: 4px 4px 0 rgba(255, 255, 255, .35); }
.btn--ghost-light:hover { background: #fff; color: var(--mv-ink); box-shadow: 6px 6px 0 rgba(255, 255, 255, .35); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* -------------------------------------------------------------------------
   08. Icons, placeholders, images
   ---------------------------------------------------------------------- */
.mv-icon { width: 24px; height: 24px; flex: none; }

.mv-ph {
	position: relative;
	display: grid; place-content: center; gap: 6px;
	text-align: center;
	background:
		repeating-linear-gradient(45deg, rgba(23, 17, 10, .05) 0 12px, transparent 12px 24px),
		var(--mv-yellow-3);
	border: 3px dashed var(--mv-ink);
	border-radius: var(--r-lg);
	color: var(--mv-ink);
	padding: 24px;
}
.mv-ph__label { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(15px, 1.6vw, 20px); }
.mv-ph__size { font-size: 12px; font-weight: 700; letter-spacing: .06em; opacity: .65; text-transform: uppercase; }
.section--ink .mv-ph { background: rgba(255, 255, 255, .06); border-color: var(--mv-yellow); color: var(--mv-yellow-3); }

.mv-img { border: var(--mv-line); border-radius: var(--r-lg); box-shadow: var(--pop); overflow: hidden; }

.veg {
	width: 16px; height: 16px; flex: none;
	border: 2px solid var(--mv-veg); border-radius: 3px;
	position: relative; background: #fff;
}
.veg::after {
	content: ""; position: absolute; inset: 3px;
	background: var(--mv-veg); border-radius: 50%;
}

/* -------------------------------------------------------------------------
   09. Topbar and header
   ---------------------------------------------------------------------- */
.topbar {
	background: var(--mv-ink); color: var(--mv-yellow-3);
	font-size: 13.5px; font-weight: 700;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar__note { display: flex; align-items: center; gap: 9px; margin: 0; }
.topbar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mv-yellow); animation: mv-blink 2.2s infinite; }
@keyframes mv-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.topbar__links { display: flex; gap: 20px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.topbar__links a:hover { color: var(--mv-yellow); }
.topbar .mv-icon { width: 16px; height: 16px; }

.header {
	position: sticky; top: 0; z-index: 60;
	background: var(--mv-yellow);
	border-bottom: var(--mv-line);
	transition: box-shadow .2s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 0 rgba(23, 17, 10, .12); }
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 78px; }

.brand { margin-right: auto; }
.brand__fallback, .custom-logo-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.custom-logo { max-height: 52px; width: auto; }
.brand__mark {
	display: grid; place-content: center;
	width: 50px; height: 50px;
	background: var(--mv-red); color: #fff;
	font-family: var(--font-display); font-size: 22px;
	border: var(--mv-line); border-radius: 14px;
	box-shadow: var(--pop-sm);
	transform: rotate(-4deg);
}
.brand__mark--lg { width: 68px; height: 68px; font-size: 30px; }
.brand__text { display: grid; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.brand__by { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .72; }

.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__list a {
	display: block; padding: 9px 14px;
	font-weight: 800; font-size: 15px;
	text-decoration: none; border-radius: var(--r-pill);
	border: 2px solid transparent;
}
.nav__list a:hover { background: rgba(255, 255, 255, .55); border-color: var(--mv-ink); }
.nav__list .current-menu-item > a { background: var(--mv-ink); color: var(--mv-yellow); border-color: var(--mv-ink); }
.nav__list .sub-menu {
	display: none; position: absolute; min-width: 220px;
	background: #fff; border: var(--mv-line); border-radius: var(--r-md);
	box-shadow: var(--pop); padding: 8px; list-style: none; margin-top: 8px;
}
.nav__list li:hover > .sub-menu, .nav__list li:focus-within > .sub-menu { display: block; }
.nav__list li { position: relative; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__cta { white-space: nowrap; }

.burger { display: none; width: 50px; height: 46px; background: #fff; border: var(--mv-line); border-radius: 14px; box-shadow: var(--pop-sm); cursor: pointer; padding: 0; }
.burger span { display: block; width: 22px; height: 3px; background: var(--mv-ink); margin: 4px auto; border-radius: 2px; transition: transform .2s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   10. Mobile drawer
   ---------------------------------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 90; background: rgba(23, 17, 10, .55); }
.drawer[hidden] { display: none; }
.drawer__panel {
	position: absolute; inset: 0 0 0 auto;
	width: min(420px, 88vw);
	background: var(--mv-paper);
	border-left: var(--mv-line);
	padding: 20px 22px 32px;
	overflow-y: auto;
	display: flex; flex-direction: column;
	animation: mv-slide .24s var(--ease);
}
@keyframes mv-slide { from { transform: translateX(100%); } }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__title { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.drawer__close { width: 44px; height: 44px; display: grid; place-content: center; background: #fff; border: var(--mv-line); border-radius: 14px; cursor: pointer; }
.drawer__list { list-style: none; margin: 0 0 auto; padding: 0; }
.drawer__list a {
	display: block; padding: 14px 4px;
	border-bottom: 2px dashed rgba(23, 17, 10, .18);
	font-family: var(--font-display); font-size: 20px; text-transform: uppercase; text-decoration: none;
}
.drawer__list .current-menu-item > a { color: var(--mv-red); }
.drawer__foot { display: grid; gap: 12px; margin-top: 26px; }
.drawer__addr { display: flex; gap: 9px; font-size: 14px; margin: 4px 0 0; }

/* -------------------------------------------------------------------------
   11. Hero
   ---------------------------------------------------------------------- */
.hero { position: relative; background: var(--mv-yellow); padding: clamp(44px, 6vw, 84px) 0 clamp(74px, 9vw, 130px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(var(--mv-ink) 2px, transparent 2px);
	background-size: 30px 30px; opacity: .08;
}
.hero__bg::after {
	content: ""; position: absolute;
	width: 62vw; height: 62vw; max-width: 760px; max-height: 760px;
	right: -14vw; top: -18vw;
	background: var(--mv-red); opacity: .1; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 60px); align-items: center; }

.hero__title {
	font-size: clamp(38px, 6.6vw, 82px);
	margin: 0 0 20px;
	text-shadow: 4px 4px 0 var(--mv-white);
}
.hero__text { font-size: clamp(16.5px, 1.7vw, 20px); max-width: 54ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 32px 0 0; padding: 0; }
.hero__chips li {
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; border: var(--mv-line-thin); border-radius: var(--r-pill);
	padding: 8px 16px; font-size: 13.5px; font-weight: 800;
	box-shadow: 3px 3px 0 var(--mv-ink);
}
.hero__chips .mv-icon { width: 18px; height: 18px; }

.hero__pack { position: relative; }
.hero__packimg { max-width: 460px; margin-inline: auto; background: #fff; }
.hero__badge {
	position: absolute; top: -14px; right: 4%;
	display: grid; place-content: center; text-align: center;
	width: 118px; height: 118px; border-radius: 50%;
	background: var(--mv-red); color: #fff;
	border: var(--mv-line); box-shadow: var(--pop);
	transform: rotate(-13deg);
	font-family: var(--font-display); text-transform: uppercase; line-height: 1;
}
.hero__badge-top { font-size: 13px; letter-spacing: .1em; }
.hero__badge-main { font-size: 27px; margin: 3px 0; }
.hero__badge-bot { font-size: 13px; letter-spacing: .1em; }

/* -------------------------------------------------------------------------
   12. Spec strip
   ---------------------------------------------------------------------- */
.strip { background: var(--mv-ink); color: var(--mv-yellow-3); padding: 22px 0; }
.strip__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.strip__item { display: grid; gap: 3px; padding-left: 16px; border-left: 3px solid var(--mv-red); }
.strip__k { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .62; }
.strip__v { font-family: var(--font-display); font-size: clamp(15px, 1.5vw, 19px); text-transform: uppercase; color: #fff; }

/* -------------------------------------------------------------------------
   13. Grids, cards, features, roles
   ---------------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); position: relative; z-index: 1; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid + .grid { margin-top: var(--gap); }

.card, .feat--boxed, .role {
	background: #fff;
	border: var(--mv-line);
	border-radius: var(--r-lg);
	padding: clamp(24px, 2.6vw, 34px);
	box-shadow: var(--pop);
	transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.card:hover, .feat--boxed:hover, .role:hover { transform: translate(-3px, -3px); box-shadow: var(--pop-lg); }
.card p, .feat p, .role p { margin: 0; color: var(--mv-ink-soft); font-size: 15.8px; }

.card__icon, .feat__icon, .role__icon {
	display: grid; place-content: center;
	width: 58px; height: 58px;
	background: var(--mv-yellow);
	border: var(--mv-line); border-radius: 18px;
	box-shadow: var(--pop-sm);
	margin-bottom: 18px;
	transform: rotate(-4deg);
}
.card__icon .mv-icon, .feat__icon .mv-icon, .role__icon .mv-icon { width: 28px; height: 28px; }
.card__title, .feat__title, .role__title { font-size: clamp(19px, 2vw, 24px); margin-bottom: .5em; }

.grid--bordered .feat { padding: 4px 0 0; }
.grid--bordered .feat__icon { background: var(--mv-red); color: #fff; }

.role--pick { background: var(--mv-white); }
.roles-pick__note { text-align: center; margin: 40px 0 0; position: relative; z-index: 1; }

.lane { background: var(--mv-white); }
.lane--retail { background: var(--mv-yellow-3); }
.supply-routes { margin-top: var(--gap); }

/* -------------------------------------------------------------------------
   14. Steps
   ---------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.step {
	background: #fff; border: var(--mv-line); border-radius: var(--r-lg);
	padding: 30px 24px 26px; box-shadow: var(--pop); position: relative;
}
.step__n {
	position: absolute; top: -22px; left: 24px;
	display: grid; place-content: center;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--mv-red); color: #fff;
	border: var(--mv-line); box-shadow: var(--pop-sm);
	font-family: var(--font-display); font-size: 21px;
	transform: rotate(-6deg);
}
.step__title { font-size: 20px; margin: 14px 0 .5em; }
.step p { margin: 0; font-size: 15.5px; color: var(--mv-ink-soft); }

/* -------------------------------------------------------------------------
   15. Ticks, callouts, pills
   ---------------------------------------------------------------------- */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; position: relative; z-index: 1; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks .mv-icon { width: 24px; height: 24px; padding: 3px; background: var(--mv-veg); color: #fff; border-radius: 50%; border: 2px solid var(--mv-ink); }
.ticks--lg li { font-size: 16.5px; font-weight: 600; }
.ticks--light .mv-icon { background: var(--mv-yellow); color: var(--mv-ink); }

.callout {
	display: flex; gap: 20px; align-items: flex-start;
	background: var(--mv-yellow); border: var(--mv-line); border-radius: var(--r-lg);
	padding: 26px 30px; margin-top: var(--gap); box-shadow: var(--pop);
	position: relative; z-index: 1;
}
.callout h3 { font-size: 21px; margin-bottom: .4em; }
.callout p { margin: 0; font-size: 15.8px; }
.callout__icon { display: grid; place-content: center; width: 52px; height: 52px; flex: none; background: #fff; border: var(--mv-line); border-radius: 16px; }
.callout--plain { background: #fff; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 24px 0 0; padding: 0; }
.pill-row li { background: #fff; border: var(--mv-line-thin); border-radius: var(--r-pill); padding: 7px 16px; font-size: 14px; font-weight: 700; }

/* -------------------------------------------------------------------------
   16. Spec list and tables
   ---------------------------------------------------------------------- */
.spec { margin: 26px 0 0; display: grid; gap: 0; }
.spec__row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 2px dashed rgba(255, 255, 255, .2); }
.spec dt { font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; opacity: .7; }
.spec dd { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: 17px; color: #fff; }

.table-scroll { overflow-x: auto; border: var(--mv-line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--pop); position: relative; z-index: 1; }
.tbl { min-width: 620px; }
.tbl th, .tbl td { padding: 16px 20px; text-align: left; border-bottom: 2px solid rgba(23, 17, 10, .1); font-size: 15.5px; color: var(--mv-ink); }
.tbl thead th { background: var(--mv-ink); color: var(--mv-yellow); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-weight: 400; font-size: 15px; }
.tbl tbody th { font-weight: 800; width: 25%; }
.tbl tr:last-child th, .tbl tr:last-child td { border-bottom: 0; }
.tbl--spec tbody th { width: 38%; background: var(--mv-paper); }
.striped tbody tr:nth-child(even) { background: var(--mv-cream); }

/* -------------------------------------------------------------------------
   17. FAQ
   ---------------------------------------------------------------------- */
.faq { display: grid; gap: 14px; position: relative; z-index: 1; }
.faq-group__title { font-size: 22px; margin: 34px 0 14px; }
.faq__item {
	background: #fff; border: var(--mv-line); border-radius: var(--r-md);
	box-shadow: var(--pop-sm); overflow: hidden;
}
.faq__item[open] { box-shadow: var(--pop); }
.faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 18px 22px; cursor: pointer; list-style: none;
	font-family: var(--font-display); text-transform: uppercase; font-size: 17.5px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__sign { width: 30px; height: 30px; flex: none; display: grid; place-content: center; background: var(--mv-yellow); border: var(--mv-line-thin); border-radius: 50%; font-size: 19px; line-height: 1; }
.faq__item[open] .faq__sign { background: var(--mv-red); color: #fff; }
.faq__a { padding: 0 22px 20px; margin: 0; color: var(--mv-ink-soft); font-size: 15.8px; }

/* -------------------------------------------------------------------------
   18. Product teaser and product hero
   ---------------------------------------------------------------------- */
.product-teaser__inner, .product-hero__inner, .quality-band__inner {
	display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center;
	position: relative; z-index: 1;
}
.product-teaser .lead, .product-hero__copy .lead { font-size: 18px; }
.product-teaser__media .mv-ph, .product-hero__media .mv-ph { max-width: 440px; margin-inline: auto; }

.product-hero { background: var(--mv-yellow); padding: clamp(44px, 6vw, 78px) 0; position: relative; overflow: hidden; }
.product-hero__tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }
.product-hero__title { font-size: clamp(34px, 5vw, 62px); }
.product-hero__note { font-size: 14px; opacity: .75; }
.product-hero__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.product-hero__thumbs .mv-ph { border-radius: var(--r-md); padding: 12px; }

.quality-band { background: var(--mv-paper); }
.quality-band__media .mv-ph { border-radius: var(--r-xl); }

/* -------------------------------------------------------------------------
   19. CTA band
   ---------------------------------------------------------------------- */
.cta-band { position: relative; background: var(--mv-red); color: #fff; padding: clamp(58px, 7vw, 96px) 0; overflow: hidden; }
.cta-band::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(#fff 2px, transparent 2px);
	background-size: 32px 32px; opacity: .12;
}
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: center; }
.cta-band__title { font-size: clamp(28px, 4vw, 48px); color: #fff; margin-bottom: .35em; }
.cta-band__text { margin: 0; font-size: 17px; opacity: .95; }
.cta-band__actions { display: grid; gap: 14px; }

/* -------------------------------------------------------------------------
   20. Split layout and lead aside
   ---------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 3.5vw, 56px); align-items: start; position: relative; z-index: 1; }
.split--wide { grid-template-columns: 1fr 400px; }

/* Opening paragraph of a section. */
.lead { font-size: clamp(17px, 1.8vw, 20px); font-weight: 600; }
.section--ink .lead { color: #d8ccba; }

.contact-card__list strong { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.contact-card__list a { display: block; text-decoration: none; font-weight: 700; }
.contact-card .btn { margin-top: 20px; }

/* -------------------------------------------------------------------------
   21. Forms
   ---------------------------------------------------------------------- */
.mvform-wrap {
	background: #fff; border: var(--mv-line); border-radius: var(--r-xl);
	box-shadow: var(--pop-lg); padding: clamp(24px, 3vw, 42px);
	position: relative; z-index: 1;
}
.mvform__title { font-size: clamp(24px, 2.6vw, 32px); }
.mvform__text { color: var(--mv-ink-soft); margin-bottom: 24px; }
.mvform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }

.field { margin: 0; display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field__label { font-weight: 800; font-size: 14.5px; }
.field__req { color: var(--mv-red); margin-left: 4px; }
.field__input {
	width: 100%; font: inherit; font-size: 16px; font-weight: 600;
	padding: 13px 16px;
	background: var(--mv-cream);
	border: var(--mv-line-thin); border-radius: var(--r-sm);
	color: var(--mv-ink);
	transition: border-color .15s, box-shadow .15s, background .15s;
}
.field__input:focus { outline: none; background: #fff; border-color: var(--mv-ink); box-shadow: var(--pop-sm); }
textarea.field__input { resize: vertical; min-height: 116px; }
select.field__input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317110a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
	padding-right: 44px;
}
.field__help { font-size: 13px; color: var(--mv-ink-soft); }
.field__error { font-size: 13px; font-weight: 700; color: var(--mv-red); min-height: 0; }
.field.has-error .field__input { border-color: var(--mv-red); background: #fff3f3; }

.field--check .check { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; font-weight: 600; }
.field--check input { width: 22px; height: 22px; flex: none; accent-color: var(--mv-red); margin-top: 2px; }

.mvform__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.mvform__note { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--mv-ink-soft); margin: 0; max-width: 44ch; }
.mvform__note .mv-icon { width: 18px; height: 18px; }
.mvform.is-busy { opacity: .65; pointer-events: none; }

.mvform__alert { border: var(--mv-line); border-radius: var(--r-md); padding: 16px 20px; margin-bottom: 22px; font-weight: 700; }
.mvform__alert.is-ok { background: #e8f6ec; }
.mvform__alert.is-error { background: #fdecec; }

.mv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border: var(--mv-line); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 26px; font-weight: 700; background: var(--mv-yellow-3); position: relative; z-index: 1; }
.alert.is-ok { background: #e8f6ec; }
.alert.is-error { background: #fdecec; }

.searchform { display: flex; gap: 10px; }
.searchform__input { flex: 1; font: inherit; padding: 13px 16px; border: var(--mv-line-thin); border-radius: var(--r-sm); background: #fff; }
.searchform__btn { padding: 13px 22px; }

/* -------------------------------------------------------------------------
   22. Banner and breadcrumbs
   ---------------------------------------------------------------------- */
.banner { position: relative; background: var(--mv-yellow); padding: clamp(46px, 6vw, 84px) 0 clamp(52px, 6vw, 86px); overflow: hidden; }
.banner::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(var(--mv-ink) 2px, transparent 2px);
	background-size: 30px 30px; opacity: .08;
}
.banner .wrap { position: relative; z-index: 1; }
.banner__title { font-size: clamp(34px, 5.4vw, 62px); max-width: 20ch; margin-bottom: .3em; }
.banner__text { font-size: clamp(16px, 1.6vw, 19px); max-width: 60ch; margin: 0; }

.crumbs { background: var(--mv-white); border-bottom: 2px solid rgba(23, 17, 10, .1); font-size: 13.5px; font-weight: 700; }
.crumbs .wrap { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.crumbs a { text-decoration: none; opacity: .7; }
.crumbs a:hover { opacity: 1; }

/* -------------------------------------------------------------------------
   23. Blog
   ---------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.postcard { background: #fff; border: var(--mv-line); border-radius: var(--r-lg); box-shadow: var(--pop); overflow: hidden; display: flex; flex-direction: column; }
.postcard__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: var(--mv-line); }
.postcard__ph { aspect-ratio: 16 / 10; border: 0; border-bottom: var(--mv-line); border-radius: 0; }
.postcard__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.postcard__date { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.postcard__title { font-size: 21px; margin: 0; }
.postcard__title a { text-decoration: none; }
.postcard__excerpt { font-size: 15.5px; color: var(--mv-ink-soft); margin: 0; }
.postcard__more { margin-top: auto; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }

.entry { font-size: 17.5px; }
.entry h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 1.4em; }
.entry h3 { font-size: clamp(21px, 2.2vw, 26px); margin-top: 1.3em; }
.entry img { border-radius: var(--r-lg); border: var(--mv-line); }
.entry blockquote { margin: 1.6em 0; padding: 20px 26px; background: var(--mv-yellow-3); border: var(--mv-line); border-radius: var(--r-md); font-weight: 600; }
.entry__thumb { margin-bottom: 30px; }
.entry__thumb img { width: 100%; border-radius: var(--r-lg); border: var(--mv-line); box-shadow: var(--pop); }
.entry__meta { font-size: 13.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .65; margin-bottom: 18px; }
.entry__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; list-style: none; padding: 0; }
.entry__tags a { display: inline-block; padding: 6px 14px; background: #fff; border: var(--mv-line-thin); border-radius: var(--r-pill); font-size: 13.5px; font-weight: 700; text-decoration: none; }

.postnav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; font-weight: 800; }
.pagelinks { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagelinks .page-numbers { display: grid; place-content: center; min-width: 46px; height: 46px; padding: 0 12px; background: #fff; border: var(--mv-line-thin); border-radius: var(--r-sm); font-weight: 800; text-decoration: none; }
.pagelinks .current { background: var(--mv-ink); color: var(--mv-yellow); }

.sidebar { display: grid; gap: 24px; }
.widget { background: #fff; border: var(--mv-line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--pop-sm); }
.widget__title { font-size: 19px; margin-bottom: .6em; }
.widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 15.5px; }

.comments { margin-top: 50px; }
.comments__title { font-size: 24px; }
.comments__list { list-style: none; padding: 0; display: grid; gap: 18px; }
.comments__closed { font-size: 14px; opacity: .7; }

.four04 { text-align: center; }
.section--404 { padding-top: clamp(60px, 8vw, 110px); }
.empty { text-align: center; padding: 40px 0; }
.soon { text-align: center; background: var(--mv-yellow-3); border: 3px dashed var(--mv-ink); border-radius: var(--r-lg); padding: 40px 30px; position: relative; z-index: 1; }
.soon__label { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; display: block; }
.soon__note { font-size: 15px; color: var(--mv-ink-soft); margin: 8px 0 0; }
.fineprint { font-size: 13.5px; color: var(--mv-ink-soft); }
.map-slot { margin-top: var(--gap); }
.quick-links { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.quick-links a { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; background: #fff; border: var(--mv-line-thin); border-radius: var(--r-md); padding: 12px 16px; }
.quick-links a:hover { box-shadow: var(--pop-sm); }
.contact-card { background: #fff; border: var(--mv-line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--pop); position: sticky; top: 108px; }
.contact-card__title { font-size: 21px; }
.contact-card__text { font-size: 15.5px; color: var(--mv-ink-soft); }
.contact-card__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; font-size: 15.5px; }
.contact-card__list li { display: flex; gap: 11px; align-items: flex-start; }

/* -------------------------------------------------------------------------
   24. Footer
   ---------------------------------------------------------------------- */
.footer { position: relative; background: var(--mv-ink); color: #cbbfae; padding: clamp(62px, 7vw, 100px) 0 0; }
.footer__top { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: clamp(30px, 4vw, 64px); padding-bottom: 50px; }
.footer__tag { font-family: var(--font-display); text-transform: uppercase; font-size: 26px; color: var(--mv-yellow); margin: 16px 0 10px; }
.footer__note { font-size: 14.5px; margin-bottom: 22px; }
.footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 15px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact a { color: #fff; text-decoration: none; }
.footer__contact a:hover { color: var(--mv-yellow); }
.footer__legalnums { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 7px; font-size: 13.5px; }
.footer__legalnums span { display: inline-block; min-width: 62px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.footer__social { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.footer__social a { display: inline-block; padding: 7px 15px; border: 2px solid rgba(255, 255, 255, .28); border-radius: var(--r-pill); font-size: 13.5px; font-weight: 700; text-decoration: none; color: #fff; }
.footer__social a:hover { background: var(--mv-yellow); color: var(--mv-ink); border-color: var(--mv-yellow); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
.footer__title { font-size: 17px; color: var(--mv-yellow); letter-spacing: .04em; margin-bottom: 1em; }
.footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; }
.footer__menu a { color: #cbbfae; text-decoration: none; }
.footer__menu a:hover { color: #fff; }
.footer__menu--plain li { color: #cbbfae; }
.footer__small { font-size: 14.5px; margin-bottom: 16px; }
.footer__col .btn { margin-bottom: 10px; }

.footer__bottom { border-top: 2px solid rgba(255, 255, 255, .13); padding: 20px 0; font-size: 13.5px; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.footer__bottom p { margin: 0; }
.footer__legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.footer__legal a { color: #cbbfae; text-decoration: none; }
.footer__legal a:hover { color: var(--mv-yellow); }

/* -------------------------------------------------------------------------
   25. Floating actions
   ---------------------------------------------------------------------- */
.float-wa {
	position: fixed; right: 20px; bottom: 20px; z-index: 70;
	width: 58px; height: 58px; display: grid; place-content: center;
	background: #25d366; color: #fff;
	border: var(--mv-line); border-radius: 50%; box-shadow: var(--pop);
	transition: transform .18s var(--ease);
}
.float-wa:hover { transform: translate(-2px, -2px) rotate(-6deg); }
.float-wa .mv-icon { width: 30px; height: 30px; }

.mobile-bar { display: none; }

/* -------------------------------------------------------------------------
   26. Reveal on scroll
   ---------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   27. Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.nav { display: none; }
	.burger { display: block; }
	.header__cta { display: none; }
	.strip__inner { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	.steps, .steps--5 { grid-template-columns: repeat(2, 1fr); }
	.split, .split--wide { grid-template-columns: 1fr; }
	.contact-card { position: static; }
	.posts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.hero__inner, .product-teaser__inner, .product-hero__inner, .quality-band__inner, .cta-band__inner {
		grid-template-columns: 1fr;
	}
	.hero__pack { order: -1; max-width: 330px; margin-inline: auto; }
	.hero__badge { width: 92px; height: 92px; }
	.hero__badge-main { font-size: 21px; }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.footer__top { grid-template-columns: 1fr; }
	.footer__cols { grid-template-columns: repeat(2, 1fr); }
	.topbar__links a:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.wrap, .wrap--narrow { width: calc(100% - 32px); }
	.grid--2, .grid--3, .steps, .steps--5, .posts, .footer__cols { grid-template-columns: 1fr; }
	.mvform__grid { grid-template-columns: 1fr; }
	.strip__inner { grid-template-columns: repeat(2, 1fr); }
	.topbar { display: none; }
	.hero { padding-bottom: 90px; }
	.hero__title { text-shadow: 3px 3px 0 var(--mv-white); }
	.deco { display: none; }
	.sticker { transform: rotate(-2deg); }
	.cta-band__actions .btn { width: 100%; }
	.float-wa { bottom: 82px; right: 14px; width: 52px; height: 52px; }

	.mobile-bar {
		display: grid; grid-template-columns: repeat(3, 1fr);
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
		background: var(--mv-ink); border-top: 3px solid var(--mv-yellow);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.mobile-bar a {
		display: grid; place-items: center; gap: 3px;
		padding: 10px 4px; color: #fff; text-decoration: none;
		font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
	}
	.mobile-bar .mv-icon { width: 21px; height: 21px; }
	.mobile-bar__cta { background: var(--mv-red); }
	body { padding-bottom: 62px; }
}

/* -------------------------------------------------------------------------
   28. Motion and print
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

@media print {
	.topbar, .header, .drawer, .float-wa, .mobile-bar, .mvform-wrap, .cta-band, .deco { display: none !important; }
	body { background: #fff; color: #000; font-size: 12pt; }
	.section { padding: 12pt 0; }
	.card, .feat--boxed, .role, .step, .table-scroll { box-shadow: none; border: 1px solid #000; }
}
