/* ============================================================================
   page-styles.css — shared styles for the secondary pages now combined into
   the single-page Motomelli app (About, Contact, Hoodies store, Compare,
   Privacy, Terms, Cookies) plus the home "Compare Products" teaser.

   Previously each of these lived in a duplicated <style> block inside its own
   .html file. They are deduplicated here and loaded once by the app shell.
   ========================================================================== */

/* ===== Shared dark top-strip for nav (used by every secondary page) ===== */
.mm-cmp-topbar {
  background: var(--mm-dark-bg);
  border-bottom: 1px solid var(--mm-dark-line);
}
.mm-cmp-topbar .mm-nav { padding: 22px 40px; min-height: 60px; border-bottom: 0; }
.mm-cmp-topbar .mm-nav__links a,
.mm-cmp-topbar .mm-nav__has-menu { color: var(--mm-dark-text); }
.mm-cmp-topbar .mm-nav__links a.is-active { color: var(--mm-accent); }
.mm-cmp-topbar .mm-mono { color: var(--mm-dark-text); }
@media (max-width: 640px) {
  .mm-cmp-topbar .mm-nav { padding: 16px 16px; }
}

/* ===== Page hero (dark band, continues from the nav strip) ===== */
.mm-pagehero {
  position: relative;
  background: var(--mm-dark-bg);
  color: var(--mm-dark-text);
  padding: 90px 40px 104px;
  border-bottom: 1px solid var(--mm-dark-line);
  overflow: hidden;
}
.mm-pagehero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--mm-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--mm-dark-line) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 30% 0%, #000, transparent);
  mask-image: radial-gradient(ellipse 75% 70% at 30% 0%, #000, transparent);
  opacity: 0.55;
  pointer-events: none;
}
.mm-pagehero::after {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(169,212,232,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.mm-pagehero__inner { position: relative; max-width: 1200px; margin: 0 auto; }
.mm-pagehero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
}
.mm-pagehero__eyebrow .mm-mono { color: var(--mm-accent); }
.mm-pagehero__eyebrow span.mm-tick {
  width: 22px; height: 1px; background: var(--mm-accent); display: block; opacity: 0.6;
}
.mm-pagehero__title {
  font-family: var(--mm-font-display);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}
.mm-pagehero__title em { font-style: normal; color: var(--mm-accent); }
.mm-pagehero__sub {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--mm-dim);
  font-size: 16px;
  line-height: 1.6;
}
.mm-pagehero__meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.mm-pagehero__chip {
  font-family: var(--mm-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-dark-text);
  border: 1px solid var(--mm-dark-line);
  padding: 8px 14px;
}
.mm-pagehero__chip em { font-style: normal; color: var(--mm-accent); }

/* ===== CTA band (dark) — shared by About & Hoodies ===== */
.mm-ctaband {
  background: var(--mm-dark-bg);
  color: var(--mm-dark-text);
  border-top: 1px solid var(--mm-dark-line);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mm-ctaband::after {
  content: '';
  position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(169,212,232,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.mm-ctaband__inner { position: relative; max-width: 720px; margin: 0 auto; }
.mm-ctaband h2 {
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 60px); letter-spacing: -0.035em;
  line-height: 0.98; margin: 14px 0 0;
}
.mm-ctaband p {
  color: var(--mm-dim); font-size: 15px; line-height: 1.6;
  margin: 18px auto 32px; max-width: 460px;
}
.mm-ctaband .mm-mono { color: var(--mm-accent); }
.mm-bigbtn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mm-font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #0a0a0b; background: var(--mm-accent);
  border: 2px solid var(--mm-accent);
  padding: 16px 30px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.mm-bigbtn:hover {
  background: var(--mm-dark-text); border-color: var(--mm-dark-text);
  transform: translateY(-2px);
}
.mm-bigbtn span { transition: transform 0.15s; }
.mm-bigbtn:hover span { transform: translateX(4px); }

/* ============================================================================
   ABOUT PAGE
   ========================================================================== */
.mm-about__lead {
  font-family: var(--mm-font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0;
}
.mm-about__lead em { font-style: normal; color: var(--mm-light-accent); }

/* Story — text + framed image */
.mm-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.mm-story__body p {
  color: var(--mm-light-dim);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.mm-story__body p:last-child { margin-bottom: 0; }
.mm-story__body strong { color: var(--mm-light-text); font-weight: 600; }
.mm-story__sign {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--mm-light-line);
}
.mm-story__sign-name {
  font-family: var(--mm-font-display); font-weight: 600; font-size: 15px;
}
.mm-story__sign-role {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mm-light-dim);
}
.mm-story__figure {
  position: relative;
  border: 1px solid var(--mm-light-line);
  background: #fff;
  padding: 14px;
}
.mm-story__figure img {
  display: block; width: 100%; height: auto;
  background: var(--mm-dark-bg);
}
.mm-story__figure-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px;
}
.mm-story__figure-cap .mm-mono { color: var(--mm-light-accent); }
.mm-story__figure-cap span:last-child {
  font-family: var(--mm-font-mono); font-size: 10px; color: var(--mm-light-dimmer);
}

/* What we do — card grid */
.mm-do__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mm-do__card {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 26px 24px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.mm-do__card:hover { border-color: var(--mm-light-accent); transform: translateY(-2px); }
.mm-do__num {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--mm-light-accent); font-weight: 600;
}
.mm-do__icon {
  width: 40px; height: 40px; margin: 16px 0 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--mm-light-line);
  color: var(--mm-light-accent);
}
.mm-do__card h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; margin: 0 0 8px; color: var(--mm-light-text);
}
.mm-do__card p {
  color: var(--mm-light-dim); font-size: 14px; line-height: 1.6; margin: 0;
}

/* Values — numbered rows */
.mm-values__list {
  border-top: 1px solid var(--mm-light-line);
}
.mm-values__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--mm-light-line);
  align-items: start;
}
.mm-values__n {
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: 38px; letter-spacing: -0.03em;
  color: var(--mm-light-accent);
  line-height: 1;
}
.mm-values__row h3 {
  font-family: var(--mm-font-display); font-weight: 600; font-size: 22px;
  letter-spacing: -0.015em; margin: 0 0 8px; color: var(--mm-light-text);
}
.mm-values__row p {
  color: var(--mm-light-dim); font-size: 15px; line-height: 1.65; margin: 0;
  max-width: 640px;
}

/* Team */
.mm-team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.mm-team__card {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 26px 24px 24px;
}
.mm-team__avatar {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mm-light-accent-pale);
  color: var(--mm-light-accent-dark);
  font-family: var(--mm-font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.mm-team__card h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 18px;
  margin: 0 0 4px; color: var(--mm-light-text);
}
.mm-team__role {
  font-family: var(--mm-font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mm-light-accent);
}
.mm-team__card p {
  color: var(--mm-light-dim); font-size: 13.5px; line-height: 1.6;
  margin: 14px 0 0;
}

/* ============================================================================
   CONTACT PAGE
   ========================================================================== */
.mm-cmethods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.mm-cmethod {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.mm-cmethod:hover { border-color: var(--mm-light-accent); transform: translateY(-2px); }
.mm-cmethod__icon {
  width: 42px; height: 42px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--mm-light-line);
  color: var(--mm-light-accent);
}
.mm-cmethod__label {
  font-family: var(--mm-font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mm-light-accent); font-weight: 600;
}
.mm-cmethod h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; margin: 6px 0 8px; color: var(--mm-light-text);
}
.mm-cmethod p {
  color: var(--mm-light-dim); font-size: 13.5px; line-height: 1.6; margin: 0 0 16px;
}
.mm-cmethod__val {
  margin-top: auto;
  font-family: var(--mm-font-display); font-weight: 600; font-size: 14.5px;
  color: var(--mm-light-text);
  display: inline-flex; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--mm-light-line);
}
.mm-cmethod:hover .mm-cmethod__val { color: var(--mm-light-accent); }
.mm-cmethod__val span { transition: transform 0.15s; }
.mm-cmethod:hover .mm-cmethod__val span { transform: translateX(3px); }

.mm-cform__grid {
  display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 24px; align-items: start;
}
.mm-cform {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 34px 32px 36px;
}
.mm-cform__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.mm-field { margin-bottom: 20px; }
.mm-field--full { grid-column: 1 / -1; }
.mm-field label {
  display: block;
  font-family: var(--mm-font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mm-light-dim); font-weight: 600;
  margin-bottom: 8px;
}
.mm-field label em { font-style: normal; color: var(--mm-light-accent); }
.mm-field input,
.mm-field select,
.mm-field textarea {
  width: 100%;
  font-family: var(--mm-font-body); font-size: 14.5px;
  color: var(--mm-light-text);
  background: var(--mm-light-card-2);
  border: 1px solid var(--mm-light-line);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color 0.15s, background 0.15s;
}
.mm-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.mm-field input:focus,
.mm-field select:focus,
.mm-field textarea:focus {
  outline: none;
  border-color: var(--mm-light-accent);
  background: #fff;
}
.mm-field input::placeholder,
.mm-field textarea::placeholder { color: var(--mm-light-dimmer); }
.mm-cform__submit {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mm-font-display); font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #fff; background: var(--mm-light-accent);
  border: 2px solid var(--mm-light-accent);
  padding: 15px 28px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.mm-cform__submit:hover {
  background: var(--mm-light-accent-dark); border-color: var(--mm-light-accent-dark);
  transform: translateY(-2px);
}
.mm-cform__submit span { transition: transform 0.15s; }
.mm-cform__submit:hover span { transform: translateX(4px); }
.mm-cform__note {
  margin: 16px 0 0;
  font-size: 12.5px; color: var(--mm-light-dim); line-height: 1.55;
}
.mm-cform__sent {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--mm-light-accent-pale);
  border: 1px solid var(--mm-light-accent-soft);
  padding: 16px 18px; margin-bottom: 22px;
}
.mm-cform__sent svg { flex-shrink: 0; color: var(--mm-light-accent-dark); margin-top: 1px; }
.mm-cform__sent strong { display: block; color: var(--mm-light-text); font-size: 14px; font-family: var(--mm-font-display); }
.mm-cform__sent p { margin: 4px 0 0; font-size: 13px; color: var(--mm-light-dim); }

.mm-caside { display: flex; flex-direction: column; gap: 16px; }
.mm-caside__block {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 26px 24px;
}
.mm-caside__block .mm-mono { color: var(--mm-light-accent); }
.mm-caside__block h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 17px;
  margin: 10px 0 10px; color: var(--mm-light-text);
}
.mm-caside__block p {
  color: var(--mm-light-dim); font-size: 13.5px; line-height: 1.65; margin: 0;
}
.mm-caside__rows { margin-top: 6px; }
.mm-caside__line {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--mm-light-line);
  font-size: 13.5px;
}
.mm-caside__line:last-child { border-bottom: 0; }
.mm-caside__line span:first-child {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mm-light-dim);
}
.mm-caside__line span:last-child { color: var(--mm-light-text); font-weight: 500; }
.mm-caside__socials { display: flex; gap: 10px; margin-top: 14px; }
.mm-caside__socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--mm-light-line); color: var(--mm-light-text);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.mm-caside__socials a:hover {
  border-color: var(--mm-light-accent);
  background: var(--mm-light-accent-pale);
  color: var(--mm-light-accent-dark);
}

.mm-faq { border-top: 1px solid var(--mm-light-line); }
.mm-faq__item { border-bottom: 1px solid var(--mm-light-line); }
.mm-faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 8px;
  text-align: left; cursor: pointer;
  font-family: var(--mm-font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--mm-light-text);
}
.mm-faq__q:hover { color: var(--mm-light-accent); }
.mm-faq__sign {
  flex-shrink: 0;
  font-family: var(--mm-font-mono); font-size: 22px; font-weight: 400;
  color: var(--mm-light-accent); line-height: 1;
}
.mm-faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.mm-faq__a.is-open { max-height: 320px; }
.mm-faq__a p {
  margin: 0; padding: 0 8px 24px;
  color: var(--mm-light-dim); font-size: 14.5px; line-height: 1.65;
  max-width: 680px;
}

/* ============================================================================
   HOODIES STORE PAGE
   ========================================================================== */
.mm-store__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 22px;
}
.mm-store__card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.mm-store__img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--mm-light-card-2);
  border: 1px solid var(--mm-light-line);
  overflow: hidden;
  transition: border-color 0.15s;
}
.mm-store__card:hover .mm-store__img { border-color: var(--mm-light-accent); }
.mm-store__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.mm-store__card:hover .mm-store__img img { transform: scale(1.045); }
.mm-store__badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--mm-font-mono); font-size: 9px; letter-spacing: 0.14em;
  font-weight: 600; text-transform: uppercase;
  color: #fff; background: var(--mm-dark-bg); padding: 5px 9px;
}
.mm-store__badge--soon { background: var(--mm-light-dim); }
.mm-store__body { padding: 14px 2px 4px; }
.mm-store__name {
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: 16px; letter-spacing: -0.01em; line-height: 1.25;
  margin: 0; color: var(--mm-light-text);
  transition: color 0.15s;
}
.mm-store__card:hover .mm-store__name { color: var(--mm-light-accent); }
.mm-store__rating { display: flex; align-items: center; gap: 7px; margin-top: 7px; min-height: 14px; }
.mm-store__stars { display: inline-flex; gap: 1px; line-height: 1; font-size: 12px; }
.mm-store__star { color: rgba(0,0,0,0.16); }
.mm-store__star.is-on { color: var(--mm-light-accent); }
.mm-store__rating-count {
  font-family: var(--mm-font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  color: var(--mm-light-dim);
}
.mm-store__rating--empty { color: var(--mm-light-dimmer); }
.mm-store__price {
  display: block; margin-top: 7px;
  font-family: var(--mm-font-mono); font-size: 13px; letter-spacing: 0.02em;
  color: var(--mm-light-text);
}

.mm-feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mm-feat__card {
  background: var(--mm-light-card);
  border: 1px solid var(--mm-light-line);
  padding: 28px 24px 30px;
  display: flex; flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.mm-feat__card:hover { border-color: var(--mm-light-accent); transform: translateY(-2px); }
.mm-feat__num {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--mm-light-accent); font-weight: 600;
}
.mm-feat__icon {
  width: 44px; height: 44px; margin: 16px 0 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--mm-light-line); color: var(--mm-light-accent);
}
.mm-feat__card h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; margin: 0 0 8px; color: var(--mm-light-text);
}
.mm-feat__card p { color: var(--mm-light-dim); font-size: 14px; line-height: 1.6; margin: 0; }

.mm-promise {
  background: var(--mm-dark-bg);
  color: var(--mm-dark-text);
  border-top: 1px solid var(--mm-dark-line);
  padding: 72px 40px;
}
.mm-promise__inner { max-width: 1100px; margin: 0 auto; }
.mm-promise__head { margin-bottom: 36px; }
.mm-promise__head .mm-mono { color: var(--mm-accent); }
.mm-promise__head h2 {
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.03em;
  line-height: 1; margin: 12px 0 0;
}
.mm-promise__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--mm-dark-line);
  border: 1px solid var(--mm-dark-line);
}
.mm-promise__cell { background: var(--mm-dark-bg); padding: 30px 26px 32px; }
.mm-promise__cell-em { font-size: 22px; line-height: 1; }
.mm-promise__cell h3 {
  font-family: var(--mm-font-display); font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em; margin: 14px 0 8px;
}
.mm-promise__cell p { color: var(--mm-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ============================================================================
   LEGAL PAGES (Privacy, Terms, Cookies)
   ========================================================================== */
.mm-legal__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.mm-legal__toc {
  position: sticky; top: 28px;
  border: 1px solid var(--mm-light-line);
  background: var(--mm-light-card);
  padding: 22px 22px 24px;
}
.mm-legal__toc .mm-mono { color: var(--mm-light-accent); display: block; margin-bottom: 14px; }
.mm-legal__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.mm-legal__toc li { counter-increment: toc; }
.mm-legal__toc a {
  display: flex; gap: 10px;
  padding: 8px 0;
  font-size: 13.5px; line-height: 1.4;
  color: var(--mm-light-dim); text-decoration: none;
  border-bottom: 1px solid var(--mm-light-line);
  transition: color 0.15s;
}
.mm-legal__toc li:last-child a { border-bottom: 0; }
.mm-legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--mm-font-mono); font-size: 10.5px;
  color: var(--mm-light-accent); flex-shrink: 0; padding-top: 1px;
}
.mm-legal__toc a:hover { color: var(--mm-light-accent); }

.mm-legal__body { max-width: 760px; min-width: 0; }
.mm-legal__intro {
  font-family: var(--mm-font-display); font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.4;
  letter-spacing: -0.015em; color: var(--mm-light-text);
  margin: 0 0 12px;
}
.mm-legal__intro em { font-style: normal; color: var(--mm-light-accent); }
.mm-legal__updated {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mm-light-dim);
  margin: 0 0 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--mm-light-line);
}
.mm-legal__h2 {
  scroll-margin-top: 24px;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.02em;
  color: var(--mm-light-text);
  margin: 48px 0 16px; padding-top: 8px;
}
.mm-legal__h2:first-of-type { margin-top: 8px; }
.mm-legal__h2 .mm-legal__num {
  font-family: var(--mm-font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--mm-light-accent);
  flex-shrink: 0; line-height: 1.7;
}
.mm-legal__body h3 {
  font-family: var(--mm-font-display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em; color: var(--mm-light-text);
  margin: 28px 0 10px;
}
.mm-legal__body p {
  color: var(--mm-light-dim); font-size: 15px; line-height: 1.72;
  margin: 0 0 16px;
}
.mm-legal__body a { color: var(--mm-light-accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.mm-legal__body strong { color: var(--mm-light-text); font-weight: 600; }
.mm-legal__body ul {
  margin: 0 0 18px; padding: 0; list-style: none;
}
.mm-legal__body ul li {
  position: relative;
  color: var(--mm-light-dim); font-size: 15px; line-height: 1.7;
  padding: 0 0 10px 24px;
}
.mm-legal__body ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px;
  width: 6px; height: 6px; background: var(--mm-light-accent);
  transform: rotate(45deg);
}
.mm-legal__body ul li strong { color: var(--mm-light-text); }

.mm-legal__callout {
  background: var(--mm-light-accent-pale);
  border: 1px solid var(--mm-light-accent-soft);
  padding: 24px 26px; margin: 32px 0 8px;
}
.mm-legal__callout .mm-mono { color: var(--mm-light-accent-dark); display: block; margin-bottom: 10px; }
.mm-legal__callout p { margin: 0; color: var(--mm-light-dim); font-size: 14.5px; line-height: 1.7; }
.mm-legal__callout a { color: var(--mm-light-accent-dark); font-weight: 600; }

/* Cookie table (Cookies page) */
.mm-legal__table {
  width: 100%; border-collapse: collapse; margin: 8px 0 24px;
  font-size: 14px;
}
.mm-legal__table th, .mm-legal__table td {
  text-align: left; vertical-align: top;
  padding: 12px 14px; border-bottom: 1px solid var(--mm-light-line);
  color: var(--mm-light-dim); line-height: 1.6;
}
.mm-legal__table th {
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mm-light-accent-dark);
  border-bottom: 1px solid var(--mm-light-accent-soft);
}
.mm-legal__table td strong { color: var(--mm-light-text); }
@media (max-width: 560px) {
  .mm-legal__table, .mm-legal__table tbody, .mm-legal__table tr, .mm-legal__table td { display: block; width: 100%; }
  .mm-legal__table thead { display: none; }
  .mm-legal__table tr { border-bottom: 1px solid var(--mm-light-line); padding: 8px 0; }
  .mm-legal__table td { border: 0; padding: 4px 0; }
  .mm-legal__table td::before { content: attr(data-label) ': '; color: var(--mm-light-accent-dark); font-weight: 600; }
}

/* ============================================================================
   HOME — "Compare Products" teaser (was inline in Motomelli.html)
   ========================================================================== */
.mm-cmpteaser {
  --mm-ink: var(--mm-light-ink);
  --mm-bg: var(--mm-light-bg);
  --mm-card: var(--mm-light-card);
  --mm-card-2: var(--mm-light-card-2);
  --mm-line: var(--mm-light-line);
  --mm-text: var(--mm-light-text);
  --mm-dim: var(--mm-light-dim);
  --mm-accent: var(--mm-light-accent);
  --mm-accent-pale: var(--mm-light-accent-pale);
  background: var(--mm-bg);
  color: var(--mm-text);
}
.mm-cmpteaser .mm-section__head .mm-mono { color: var(--mm-accent); }
.mm-cmpteaser__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.mm-cmpteaser__card {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s;
}
.mm-cmpteaser__card:hover {
  transform: translateY(-3px);
}
.mm-cmpteaser__card:hover .mm-cmpteaser__name { color: var(--mm-accent); }
.mm-cmpteaser__img {
  aspect-ratio: 4 / 5;
  background: var(--mm-bg);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.mm-cmpteaser__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.mm-cmpteaser__star {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--mm-text);
  color: var(--mm-card);
  font-family: var(--mm-font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 4px 8px;
}
.mm-cmpteaser__brand { color: var(--mm-accent); font-family: var(--mm-font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.mm-cmpteaser__name {
  font-family: var(--mm-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 4px 0 12px;
  color: var(--mm-text);
  line-height: 1.15;
  transition: color 0.15s;
}
.mm-cmpteaser__specs {
  margin: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.mm-cmpteaser__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--mm-line);
}
.mm-cmpteaser__spec dt {
  font-family: var(--mm-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mm-dim);
  white-space: nowrap;
}
.mm-cmpteaser__spec dd {
  margin: 0;
  font-family: var(--mm-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--mm-text);
  text-align: right;
  line-height: 1.25;
}
.mm-cmpteaser__ce {
  font-family: var(--mm-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--mm-accent-pale);
  color: var(--mm-light-accent-dark);
}
.mm-cmpteaser__ce--aaa { background: var(--mm-accent); color: #fff; }
.mm-cmpteaser__cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--mm-line);
  flex-wrap: wrap;
  gap: 16px;
}
.mm-cmpteaser__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mm-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--mm-text);
  border-bottom: 2px solid var(--mm-accent);
  padding-bottom: 4px;
  text-decoration: none;
}
.mm-cmpteaser__cta-link:hover { color: var(--mm-accent); }
.mm-cmpteaser__cta-note { color: var(--mm-dim); font-size: 13px; }

.mm-cmpteaser__statband {
  margin-top: 32px;
}
.mm-cmpteaser__statband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--mm-dim);
}
.mm-cmpteaser__statcell {
  background: transparent;
  padding: 30px 24px;
  text-align: center;
}
.mm-cmpteaser__statn {
  font-family: var(--mm-font-display); font-weight: 700;
  font-size: clamp(38px, 4.5vw, 56px); letter-spacing: -0.03em;
  color: var(--mm-light-accent); line-height: 1;
}
.mm-cmpteaser__statl {
  margin-top: 12px;
  font-family: var(--mm-font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #000;
}

.mm-cmpteaser .mm-section__head-r {
  align-self: end;
  justify-self: end;
}
.mm-cmpteaser__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mm-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--mm-accent);
  border: 2px solid var(--mm-accent);
  padding: 16px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.mm-cmpteaser__cta-btn:hover {
  background: var(--mm-text);
  border-color: var(--mm-text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.mm-cmpteaser__cta-btn span { transition: transform 0.15s ease; }
.mm-cmpteaser__cta-btn:hover span { transform: translateX(4px); }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .mm-story__grid { grid-template-columns: 1fr; gap: 36px; }
  .mm-do__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-team__grid { grid-template-columns: 1fr; }
  .mm-cmethods { grid-template-columns: 1fr; }
  .mm-cform__grid { grid-template-columns: 1fr; }
  .mm-feat__grid { grid-template-columns: 1fr; }
  .mm-promise__grid { grid-template-columns: 1fr; }
  .mm-store__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-legal__grid { grid-template-columns: 1fr; gap: 28px; }
  .mm-legal__toc { position: static; }
  .mm-cmpteaser__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mm-store__grid { gap: 12px; }
  .mm-promise, .mm-ctaband { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 600px) {
  .mm-cmpteaser__statband-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mm-pagehero { padding: 60px 16px 72px; }
  .mm-do__grid { grid-template-columns: 1fr; }
  .mm-values__row { grid-template-columns: 1fr; gap: 10px; padding: 24px 4px; }
  .mm-ctaband { padding-left: 16px; padding-right: 16px; }
  .mm-cform { padding: 26px 20px 28px; }
  .mm-cform__row { grid-template-columns: 1fr; gap: 0; }
  .mm-faq__q { font-size: 16px; }
}
@media (max-width: 480px) {
  .mm-cmpteaser__name { font-size: 15px; }
  .mm-cmpteaser__spec dd { font-size: 12px; }
}
