:root {
  --mzl-ink: #10130f;
  --mzl-muted: #5f665d;
  --mzl-black: #080a08;
  --mzl-surface: #f5f6f1;
  --mzl-white: #ffffff;
  --mzl-lime: #b6f22e;
  --mzl-lime-dark: #82b10d;
  --mzl-gold: #d8ad42;
  --mzl-line: rgba(16, 19, 15, .12);
  --mzl-radius: 24px;
  --mzl-shadow: 0 24px 80px rgba(0, 0, 0, .15);
}

.mzl-premium-active .site-content {
  display: block;
  padding: 0;
}

.mzl-premium-active #primary,
.mzl-premium-active .content-area {
  float: none;
  width: 100%;
  margin: 0;
}

.mzl-premium-active .inside-article,
.mzl-premium-active .site-main,
.mzl-premium-active .entry-content {
  margin: 0;
  padding: 0;
  background: transparent;
}

.mzl-premium-active .entry-content > .mzl-page {
  margin-top: 0;
}

.mzl-page,
.mzl-page * {
  box-sizing: border-box;
}

.mzl-page {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--mzl-ink);
  background: var(--mzl-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.mzl-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mzl-page a {
  text-underline-offset: 3px;
}

.mzl-page :focus-visible {
  outline: 3px solid var(--mzl-gold);
  outline-offset: 4px;
}

.mzl-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.mzl-hero {
  position: relative;
  min-height: 740px;
  padding: 82px 0 68px;
  overflow: hidden;
  color: var(--mzl-white);
  background:
    radial-gradient(circle at 75% 42%, rgba(182, 242, 46, .17), transparent 30%),
    linear-gradient(135deg, #060806 0%, #111710 58%, #080a08 100%);
}

.mzl-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.mzl-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.mzl-glow-one {
  top: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: rgba(182, 242, 46, .10);
}

.mzl-glow-two {
  bottom: -160px;
  left: 22%;
  width: 360px;
  height: 360px;
  background: rgba(216, 173, 66, .08);
}

.mzl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.mzl-eyebrow,
.mzl-kicker,
.mzl-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mzl-lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
}

.mzl-eyebrow::before,
.mzl-kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mzl-hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  color: var(--mzl-white);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.mzl-hero h1::first-line {
  color: var(--mzl-lime);
}

.mzl-lead {
  max-width: 720px;
  margin: 0 0 16px;
  color: #f6f7f3;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.mzl-hero-copy > p:not(.mzl-lead):not(.mzl-microcopy) {
  max-width: 690px;
  color: #bdc4b9;
}

.mzl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mzl-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mzl-btn:hover {
  transform: translateY(-2px);
}

.mzl-btn-primary {
  color: #0c1007 !important;
  background: linear-gradient(135deg, #c9ff4c, var(--mzl-lime));
  box-shadow: 0 14px 40px rgba(182, 242, 46, .22);
}

.mzl-btn-primary:hover {
  color: #0c1007 !important;
  box-shadow: 0 18px 50px rgba(182, 242, 46, .32);
}

.mzl-btn-ghost {
  color: var(--mzl-white) !important;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.mzl-btn-ghost:hover {
  background: rgba(255, 255, 255, .11);
}

.mzl-btn-wide {
  width: 100%;
}

.mzl-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #d6dad3;
  font-size: 14px;
  list-style: none;
}

.mzl-trust-row span {
  color: var(--mzl-lime);
  font-weight: 900;
}

.mzl-microcopy {
  margin: 13px 0 0;
  color: #8f978b !important;
  font-size: 12px;
  line-height: 1.5;
}

.mzl-hero-media {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.mzl-hero-media > img {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  filter: drop-shadow(0 42px 50px rgba(0, 0, 0, .52));
  animation: mzl-float 5s ease-in-out infinite;
}

.mzl-product-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(182, 242, 46, .25);
  border-radius: 50%;
}

.mzl-product-orbit::before,
.mzl-product-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: inherit;
  content: "";
}

.mzl-product-orbit::before { inset: 38px; }
.mzl-product-orbit::after { inset: 86px; }

@keyframes mzl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mzl-floating-card {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(15, 20, 14, .78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}

.mzl-floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #9ba393;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.mzl-floating-card strong {
  color: var(--mzl-white);
  font-size: 16px;
}

.mzl-card-top { top: 20%; right: 0; }
.mzl-card-bottom { bottom: 18%; left: 0; }

.mzl-quick {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 26px 0;
  border-bottom: 1px solid var(--mzl-line);
  background: var(--mzl-white);
}

.mzl-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mzl-quick article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid var(--mzl-line);
}

.mzl-quick article:last-child { border-right: 0; }

.mzl-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #172008;
  background: var(--mzl-lime);
  font-size: 12px;
  font-weight: 900;
}

.mzl-quick strong { display: block; font-size: 15px; }
.mzl-quick p { margin: 2px 0 0; color: var(--mzl-muted); font-size: 13px; line-height: 1.45; }

.mzl-toc {
  margin-top: 70px;
  padding: 24px 28px;
  border: 1px solid var(--mzl-line);
  border-radius: 18px;
  background: #fbfcf8;
}

.mzl-toc-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: var(--mzl-ink);
  background: none;
  font: inherit;
  font-weight: 850;
}

.mzl-toc ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  counter-reset: mzl-toc;
  list-style: none;
}

.mzl-toc li { counter-increment: mzl-toc; }

.mzl-toc a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--mzl-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.mzl-toc a::before {
  color: var(--mzl-lime-dark);
  content: "0" counter(mzl-toc);
  font-size: 10px;
  font-weight: 900;
}

.mzl-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mzl-section h2,
.mzl-gallery h2,
.mzl-band h2,
.mzl-offer h2,
.mzl-conclusion h2,
.mzl-callout h2 {
  max-width: 880px;
  margin: 14px 0 24px;
  color: var(--mzl-ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.mzl-section > p,
.mzl-section > .mzl-shell > p {
  max-width: 860px;
}

.mzl-section p,
.mzl-gallery p {
  color: #3e443b;
}

.mzl-kicker { color: var(--mzl-lime-dark); }

.mzl-section-dark {
  width: 100%;
  max-width: none;
  color: var(--mzl-white);
  background: var(--mzl-black);
}

.mzl-section-dark h2,
.mzl-section-dark h3 { color: var(--mzl-white); }
.mzl-section-dark p { color: #b8c0b4; }
.mzl-section-dark .mzl-kicker { color: var(--mzl-lime); }

.mzl-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.mzl-benefit-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--mzl-radius);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
}

.mzl-benefit-grid article > span {
  color: var(--mzl-lime);
  font-size: 12px;
  font-weight: 900;
}

.mzl-benefit-grid h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.mzl-benefit-grid p { margin: 0; font-size: 14px; line-height: 1.65; }

.mzl-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.mzl-split-reverse { grid-template-columns: .92fr 1.08fr; }

.mzl-product-stage {
  margin: 0;
  padding: 18px 18px 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, #f7f8f4, #e9ece3);
}

.mzl-product-stage img {
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mzl-product-stage figcaption {
  padding: 0 10px;
  color: var(--mzl-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.mzl-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.mzl-ingredient-grid article {
  padding: 18px 20px;
  border: 1px solid var(--mzl-line);
  border-radius: 16px;
}

.mzl-ingredient-grid strong { font-size: 15px; }
.mzl-ingredient-grid p { margin: 3px 0 0; font-size: 13px; line-height: 1.5; }

.mzl-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  margin-top: 10px;
  padding: 44px 48px;
  border: 1px solid rgba(182, 242, 46, .38);
  border-radius: 28px;
  background: linear-gradient(135deg, #efffd2, #f8fce8);
}

.mzl-callout-label { color: var(--mzl-lime-dark); }
.mzl-callout h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 46px); }
.mzl-callout p { margin: 0; color: #3f4934; }

.mzl-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.mzl-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--mzl-line);
  border-radius: 20px;
  background: #fff;
}

.mzl-steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #101509;
  background: var(--mzl-lime);
  font-size: 13px;
  font-weight: 900;
}

.mzl-steps h3 { margin: 0 0 5px; font-size: 18px; }
.mzl-steps p { margin: 0; font-size: 14px; line-height: 1.6; }

.mzl-band {
  overflow: hidden;
  color: var(--mzl-white);
  background: linear-gradient(110deg, #11170f, #060806);
}

.mzl-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: center;
  gap: 30px;
}

.mzl-band h2 { color: var(--mzl-white); }
.mzl-band p { max-width: 620px; color: #bac2b6; }
.mzl-band img { align-self: end; max-height: 500px; object-fit: contain; mix-blend-mode: screen; }

.mzl-section blockquote {
  max-width: 860px;
  margin: 36px 0;
  padding: 30px 34px;
  border: 0;
  border-left: 5px solid var(--mzl-lime);
  border-radius: 0 18px 18px 0;
  background: var(--mzl-surface);
}

.mzl-section blockquote p {
  margin: 0;
  color: var(--mzl-ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.mzl-section-soft {
  width: 100%;
  max-width: none;
  background: var(--mzl-surface);
}

.mzl-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.mzl-safety-grid article {
  position: relative;
  padding: 26px 26px 26px 70px;
  border: 1px solid var(--mzl-line);
  border-radius: 20px;
  background: var(--mzl-white);
}

.mzl-safety-grid article > span {
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #211600;
  background: #ffc14a;
  font-weight: 950;
}

.mzl-safety-grid h3 { margin: 0 0 6px; font-size: 18px; }
.mzl-safety-grid p { margin: 0; font-size: 14px; line-height: 1.6; }

.mzl-photo-stack {
  position: relative;
  min-height: 550px;
  margin: 0;
}

.mzl-photo-stack img {
  position: absolute;
  width: 67%;
  aspect-ratio: 3 / 4;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: var(--mzl-shadow);
  object-fit: cover;
}

.mzl-photo-stack img:first-child { top: 0; left: 0; transform: rotate(-3deg); }
.mzl-photo-stack img:last-child { right: 0; bottom: 0; transform: rotate(4deg); }

.mzl-gallery {
  padding-top: 34px;
  padding-bottom: 100px;
}

.mzl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.mzl-gallery-grid button {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--mzl-line);
  border-radius: 20px;
  background: #f8f9f5;
  cursor: zoom-in;
}

.mzl-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform .25s ease;
}

.mzl-gallery-grid button:hover img { transform: scale(1.035); }

.mzl-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 36px 0;
}

.mzl-checklist label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--mzl-line);
  border-radius: 15px;
  color: #343a31;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.mzl-checklist input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--mzl-lime-dark);
}

.mzl-offer {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  border-radius: 34px;
  color: var(--mzl-white);
  background:
    radial-gradient(circle at 85% 30%, rgba(182, 242, 46, .2), transparent 33%),
    #080b08;
}

.mzl-offer h2 { color: var(--mzl-white); }
.mzl-offer p { color: #bdc5b9; }
.mzl-offer ul { margin: 24px 0; padding: 0; list-style: none; }
.mzl-offer li { margin: 8px 0; color: #e4e9df; font-size: 14px; }
.mzl-offer li::before { margin-right: 9px; color: var(--mzl-lime); content: "✓"; font-weight: 900; }
.mzl-offer > img { width: 100%; mix-blend-mode: screen; }

.mzl-faq-intro { max-width: 760px; }

.mzl-accordion {
  max-width: 940px;
  margin-top: 40px;
  border-top: 1px solid var(--mzl-line);
}

.mzl-accordion h3 {
  margin: 32px 0 8px;
  color: var(--mzl-lime-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mzl-accordion details { border-bottom: 1px solid var(--mzl-line); }

.mzl-accordion summary {
  position: relative;
  padding: 23px 52px 23px 0;
  color: var(--mzl-ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.mzl-accordion summary::-webkit-details-marker { display: none; }
.mzl-accordion summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mzl-surface);
  content: "+";
}
.mzl-accordion details[open] summary::after { content: "−"; }
.mzl-accordion details div { padding: 0 50px 20px 0; }
.mzl-accordion details p { margin: 0; color: var(--mzl-muted); }

.mzl-conclusion {
  padding: 100px 0;
  color: var(--mzl-white);
  background: #080a08;
}

.mzl-conclusion-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: center;
}

.mzl-conclusion h2 { color: var(--mzl-white); }
.mzl-conclusion p { color: #b8c0b4; }

.mzl-conclusion-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
}

.mzl-conclusion-card strong { font-size: 22px; }

.mzl-editorial-note {
  padding-top: 36px;
  padding-bottom: 110px;
}

.mzl-editorial-note p {
  margin: 0;
  color: #767d73;
  font-size: 12px;
  line-height: 1.6;
}

.mzl-sticky {
  position: fixed;
  z-index: 9998;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 370px;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  color: #fff;
  background: rgba(8, 10, 8, .94);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  transform: translateY(140%);
  transition: transform .35s ease;
}

.mzl-sticky.is-visible { transform: translateY(0); }
.mzl-sticky strong, .mzl-sticky span { display: block; }
.mzl-sticky strong { font-size: 15px; }
.mzl-sticky span { color: #9fa79b; font-size: 11px; }
.mzl-sticky .mzl-btn { min-height: 44px; padding: 10px 18px; font-size: 13px; }

.mzl-lightbox {
  width: min(880px, calc(100% - 30px));
  max-height: 90vh;
  padding: 20px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--mzl-shadow);
}

.mzl-lightbox::backdrop { background: rgba(0, 0, 0, .78); backdrop-filter: blur(4px); }
.mzl-lightbox img { width: 100%; max-height: calc(90vh - 40px); object-fit: contain; }
.mzl-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .mzl-hero-grid,
  .mzl-split,
  .mzl-split-reverse,
  .mzl-band-grid,
  .mzl-offer,
  .mzl-conclusion-grid,
  .mzl-callout { grid-template-columns: 1fr; }

  .mzl-hero { padding-top: 64px; }
  .mzl-hero-media { min-height: 520px; }
  .mzl-product-orbit { width: 420px; height: 420px; }
  .mzl-quick-grid { grid-template-columns: 1fr; }
  .mzl-quick article { border-right: 0; border-bottom: 1px solid var(--mzl-line); }
  .mzl-quick article:last-child { border-bottom: 0; }
  .mzl-toc ol { grid-template-columns: repeat(2, 1fr); }
  .mzl-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .mzl-callout { gap: 15px; }
  .mzl-callout p { max-width: 760px; }
  .mzl-band-grid { padding-top: 70px; }
  .mzl-band img { justify-self: center; }
  .mzl-photo-stack { min-height: 640px; }
  .mzl-offer > img { max-width: 540px; justify-self: center; }
}

@media (max-width: 680px) {
  .mzl-page { font-size: 16px; }
  .mzl-shell { width: min(100% - 28px, 1180px); }
  .mzl-hero { min-height: 0; padding: 54px 0 36px; }
  .mzl-hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .mzl-hero-actions { display: grid; }
  .mzl-btn { width: 100%; }
  .mzl-trust-row { display: grid; gap: 6px; }
  .mzl-hero-media { min-height: 430px; }
  .mzl-hero-media > img { width: min(420px, 104%); }
  .mzl-product-orbit { width: 330px; height: 330px; }
  .mzl-floating-card { min-width: 105px; padding: 10px 12px; }
  .mzl-card-top { right: -6px; }
  .mzl-card-bottom { left: -6px; }
  .mzl-toc { margin-top: 46px; padding: 20px; }
  .mzl-toc-toggle { display: flex; }
  .mzl-toc ol { display: none; grid-template-columns: 1fr; margin-top: 18px; }
  .mzl-toc.is-open ol { display: grid; }
  .mzl-section { padding-top: 72px; padding-bottom: 72px; }
  .mzl-section h2,
  .mzl-gallery h2,
  .mzl-band h2,
  .mzl-offer h2,
  .mzl-conclusion h2,
  .mzl-callout h2 { font-size: clamp(32px, 10.5vw, 46px); }
  .mzl-benefit-grid,
  .mzl-ingredient-grid,
  .mzl-steps,
  .mzl-safety-grid,
  .mzl-checklist { grid-template-columns: 1fr; }
  .mzl-benefit-grid article { padding: 22px; }
  .mzl-callout { width: min(100% - 28px, 1180px); padding: 30px 24px; }
  .mzl-band-grid { min-height: 0; padding-top: 60px; }
  .mzl-photo-stack { min-height: 470px; }
  .mzl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mzl-offer { width: min(100% - 28px, 1180px); gap: 18px; border-radius: 24px; }
  .mzl-accordion summary { font-size: 16px; }
  .mzl-sticky {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-width: 0;
    padding: 10px 10px 10px 14px;
  }
  .mzl-sticky .mzl-btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .mzl-page *,
  .mzl-page *::before,
  .mzl-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
