﻿:root {
  --mm-red: #d71920;
  --mm-red-dark: #9d1218;
  --mm-ink: #17171b;
  --mm-muted: #62626f;
  --mm-line: #e2e2e8;
  --mm-soft: #f6f6f8;
  --mm-soft-red: #fff1f2;
  --mm-white: #ffffff;
  --mm-gold: #b98a42;
  --mm-shadow: 0 22px 62px rgba(23, 23, 27, 0.12);
  --mm-radius: 8px;
  --mm-max: 1180px;
  --mm-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mm-text-xs: 0.75rem;
  --mm-text-sm: 0.875rem;
  --mm-text-base: 1rem;
  --mm-text-lead: 1.0625rem;
  --mm-h1: 2.625rem;
  --mm-h2: 1.875rem;
  --mm-h3: 1.25rem;
  --mm-h-card: 1.125rem;
  --mm-h-small: 1rem;
  --mm-weight-heading: 800;
  --mm-weight-label: 800;
  --mm-line-heading: 1.16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mm-ink);
  background: var(--mm-white);
  font-family: var(--mm-font-body);
  font-size: var(--mm-text-base);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--mm-red);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-weight: var(--mm-weight-heading);
  line-height: var(--mm-line-heading);
  letter-spacing: 0;
}

h1 {
  font-size: var(--mm-h1);
}

h2 {
  font-size: var(--mm-h2);
}

h3 {
  font-size: var(--mm-h3);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--mm-red);
  color: var(--mm-white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 228, 234, 0.78);
  backdrop-filter: blur(16px);
}

.site-header--brandscape {
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  width: min(var(--mm-max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-header--brandscape .site-header__inner {
  position: relative;
  min-height: 82px;
  padding: 0.5rem 0;
  overflow: visible;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.32rem;
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  box-shadow: 0 8px 24px rgba(23, 23, 27, 0.06);
  line-height: 0;
}

.brand-mark--integrated {
  position: relative;
  z-index: 2;
  width: min(300px, 25vw);
  min-width: 220px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark__word {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0.16rem;
  justify-items: center;
  line-height: 1;
  text-align: center;
}

.brand-mark__name,
.footer-brand {
  font-size: var(--mm-h2);
  font-weight: var(--mm-weight-heading);
  text-transform: uppercase;
  color: var(--mm-red);
}

.brand-mark__tagline {
  display: block;
  margin-top: 0;
  max-width: 100%;
  overflow: hidden;
  color: var(--mm-muted);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.custom-logo {
  max-width: 210px;
  max-height: 60px;
  object-fit: contain;
}

.brand-mark__logo {
  display: block;
  object-fit: contain;
}

.brand-mark__logo--full {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-height: 54px;
  border-radius: 6px;
}

.brand-mark__logo--compact {
  width: 100%;
  height: 100%;
  border-radius: var(--mm-radius);
}

.primary-nav {
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.primary-nav__list,
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.72rem, 1.15vw, 1.05rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--mm-ink);
  font-weight: 700;
  font-size: var(--mm-text-sm);
  line-height: 1.15;
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--mm-radius);
  font-size: var(--mm-text-sm);
  font-weight: var(--mm-weight-heading);
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.header-cta,
.button--primary {
  color: var(--mm-white);
  background: var(--mm-red);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.22);
}

.header-cta:hover,
.button--primary:hover {
  color: var(--mm-white);
  background: var(--mm-red-dark);
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--mm-ink);
  background: var(--mm-white);
  border-color: var(--mm-line);
}

.button--light {
  color: var(--mm-ink);
  background: var(--mm-white);
}

.menu-toggle {
  display: none;
}

.hero-section {
  width: min(var(--mm-max), calc(100% - 32px));
  min-height: min(760px, calc(100vh - 124px));
  margin: 0 auto;
  padding: 4rem 0 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-section__content {
  max-width: 640px;
}

.hero-section--brandscape {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--mm-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  color: var(--mm-muted);
  font-size: var(--mm-text-lead);
  line-height: 1.6;
}

.hero-actions,
.site-footer__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
}

.hero-quick-links a {
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  color: var(--mm-ink);
  background: var(--mm-white);
  font-size: var(--mm-text-sm);
  font-weight: 700;
}

.hero-quick-links a:hover {
  border-color: rgba(215, 25, 32, 0.34);
  background: var(--mm-soft-red);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-link {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--mm-line);
  border-radius: 999px;
  color: var(--mm-muted);
  background: var(--mm-white);
  font-size: var(--mm-text-sm);
  font-weight: 700;
}

.trust-link:hover {
  border-color: rgba(215, 25, 32, 0.34);
  color: var(--mm-red);
  background: var(--mm-soft-red);
}

.hero-visual {
  position: relative;
  height: min(58vw, 560px);
  min-height: 430px;
  border-radius: 14px;
  overflow: hidden;
  background: #101013;
  box-shadow: var(--mm-shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-visual--brandscape {
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 0.85rem;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual--brandscape img {
  min-height: 0;
}

.hero-visual__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 14px;
  background: #101013;
  box-shadow: var(--mm-shadow);
}

.hero-visual__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-visual__proof span {
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  display: grid;
  align-items: center;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  color: var(--mm-ink);
  background: var(--mm-white);
  font-size: var(--mm-text-sm);
  font-weight: 800;
  line-height: 1.15;
}

.hero-visual__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.2rem;
  width: min(330px, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: var(--mm-radius);
  color: var(--mm-white);
  background: rgba(16, 16, 19, 0.86);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.18);
}

.hero-visual__badge span {
  color: #ffb7ba;
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual__badge strong {
  font-size: var(--mm-h-card);
  line-height: var(--mm-line-heading);
}

.section,
.page-hero,
.content-wrap {
  width: min(var(--mm-max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
}

.section--compact {
  padding-top: 2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading--row > div {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--mm-muted);
  font-size: var(--mm-text-lead);
}

.section-link {
  margin-top: 1.2rem;
}

.category-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card,
.post-card,
.feature-panel,
.store-directory-card,
.faq-list details {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
}

.category-card {
  min-height: 0;
  padding: 0.75rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(23, 23, 27, 0.1);
}

.category-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.category-card__media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.category-card__media-wrap .category-card__media {
  border-radius: 0;
}

.category-card span {
  width: fit-content;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.category-card h3 {
  font-size: var(--mm-h-card);
  margin-bottom: 0.25rem;
}

.category-card p {
  margin-bottom: 0;
}

.category-card p,
.feature-panel li,
.post-card p,
.faq-list p,
.site-footer p {
  color: var(--mm-muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.check-list {
  margin: 1.3rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--mm-ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--mm-red);
}

.feature-panel {
  padding: 1.6rem;
  background: var(--mm-soft);
}

.feature-panel ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-panel li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(23, 23, 27, 0.08);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.pro-card,
.contact-panel {
  display: grid;
  gap: 0.85rem;
}

.pro-card .button,
.contact-panel .button {
  width: fit-content;
}

.contact-panel a:not(.button) {
  color: var(--mm-red);
  font-weight: var(--mm-weight-heading);
}

.section--dark {
  width: 100%;
  max-width: none;
  padding: 5rem max(16px, calc((100vw - var(--mm-max)) / 2));
  color: var(--mm-white);
  background: #17171b;
}

.section--dark .eyebrow,
.section--dark a:hover {
  color: #ffb7ba;
}

.section--dark p,
.section--dark span {
  color: rgba(255, 255, 255, 0.72);
}

.store-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.store-strip a {
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.store-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--mm-white);
  background: rgba(255, 255, 255, 0.1);
}

.store-strip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: var(--mm-h3);
}

.store-gallery-section {
  padding-top: 4rem;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.store-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
}

.store-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.store-gallery__item figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem 1rem;
}

.store-gallery__item strong {
  font-size: var(--mm-h-card);
}

.store-gallery__item span {
  color: var(--mm-muted);
  font-size: var(--mm-text-sm);
}

.page-hero--stores {
  max-width: var(--mm-max);
  margin: 0 auto;
}

.page-hero--with-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 2.6rem;
}

.page-hero--with-visual > div {
  max-width: 760px;
}

.page-visual {
  margin: 0;
  border: 1px solid var(--mm-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
}

.page-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-visual--brands img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--mm-white);
}

.page-visual--pro img,
.page-visual--wholesale img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--mm-white);
}

.contact-routing-card {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--mm-line);
  border-radius: 0;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
}

.contact-routing-card h2 {
  margin: -0.35rem 0 0;
  font-size: var(--mm-h3);
}

.contact-routing-card__list {
  display: grid;
  border-top: 1px solid var(--mm-line);
}

.contact-routing-card__item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mm-line);
  color: var(--mm-ink);
}

.contact-routing-card__item:hover {
  color: var(--mm-red);
}

.contact-routing-card__item span {
  color: var(--mm-muted);
  font-size: var(--mm-text-sm);
  line-height: 1.5;
}

.contact-routing-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.page-visual__body {
  padding: 1rem 1.1rem 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.page-visual__body strong {
  font-size: var(--mm-h-card);
  line-height: var(--mm-line-heading);
}

.page-visual__body > span {
  color: var(--mm-muted);
}

.page-visual__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.page-visual__chips span {
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.brand-guide,
.brand-fit-grid article,
.brand-product-grid article {
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
}

.brand-guide {
  padding: clamp(1rem, 2.8vw, 1.35rem);
}

.brand-guide h2 {
  margin-top: 0.2rem;
  font-size: var(--mm-h3);
}

.brand-guide__rows {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--mm-line);
}

.brand-guide__rows div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--mm-line);
}

.brand-guide__rows strong {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mm-white);
  background: var(--mm-red);
  font-size: var(--mm-text-sm);
}

.brand-guide__rows span,
.brand-fit-grid p,
.brand-product-grid p,
.brand-cta-band p {
  color: var(--mm-muted);
}

.brand-fit-grid,
.brand-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-fit-grid article,
.brand-product-grid article {
  min-height: 205px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.brand-fit-grid span,
.brand-product-grid span {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.brand-fit-grid h3,
.brand-product-grid h3 {
  margin-bottom: 0;
}

.brand-fit-grid p,
.brand-product-grid p {
  margin-top: auto;
}

.brand-content {
  padding-top: 0;
}

.brand-cta-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4rem max(16px, calc((100vw - var(--mm-max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  color: var(--mm-white);
  background: var(--mm-ink);
}

.brand-cta-band h2 {
  max-width: 760px;
}

.brand-cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.brand-cta-band .eyebrow {
  color: #ffb7ba;
}

.store-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.store-summary span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  color: var(--mm-muted);
}

.store-summary strong {
  color: var(--mm-red);
}

.buyer-task-strip {
  padding-bottom: 0;
}

.buyer-task-strip .store-summary {
  margin-top: 0;
}

.buyer-task-strip .store-summary span {
  flex: 1 1 180px;
}

.wholesale-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.official-brand-section {
  padding-top: 0;
}

.official-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.official-brand-card {
  display: grid;
  gap: 0.75rem;
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--mm-line);
  border-radius: 0;
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
}

.official-brand-card span {
  color: var(--mm-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.official-brand-card h3 {
  margin: 0;
  font-size: var(--mm-h-card);
  line-height: 1.35;
}

.official-brand-card p {
  margin: 0;
  color: var(--mm-muted);
}

.segment-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
}

.segment-card span {
  color: var(--mm-red);
  font-weight: var(--mm-weight-heading);
}

.segment-card p {
  color: var(--mm-muted);
}

.store-city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.store-city-tabs button {
  min-height: 40px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  color: var(--mm-ink);
  background: var(--mm-white);
  font: inherit;
  font-size: var(--mm-text-sm);
  font-weight: var(--mm-weight-label);
  cursor: pointer;
}

.store-city-tabs button.is-active,
.store-city-tabs button:hover {
  border-color: var(--mm-red);
  color: var(--mm-white);
  background: var(--mm-red);
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 1.2rem;
  align-items: start;
}

.store-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.store-directory-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-directory-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.store-directory-card__top span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--mm-soft);
  color: var(--mm-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.store-directory-card h3,
.store-details {
  margin: 0;
}

.store-details {
  display: grid;
  gap: 0.75rem;
}

.store-details div {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(23, 23, 27, 0.08);
}

.store-details dt {
  margin-bottom: 0.2rem;
  color: var(--mm-muted);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.store-details dd {
  margin: 0;
  color: var(--mm-ink);
}

.store-details a {
  color: var(--mm-red);
  font-weight: var(--mm-weight-heading);
}

.store-note {
  margin: 0;
  color: var(--mm-muted);
}

.store-action-note {
  margin: -0.25rem 0 0.1rem;
  color: var(--mm-muted);
  font-size: var(--mm-text-sm);
}

.store-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: auto;
}

.store-help {
  align-items: start;
}

.store-map-panel {
  position: sticky;
  top: 96px;
  padding: 1.35rem;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 12px;
  background: var(--mm-soft-red);
}

.store-map-panel h2 {
  font-size: var(--mm-h3);
}

.store-map-panel__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.store-map-panel__list span {
  padding: 0.72rem 0.85rem;
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  color: var(--mm-ink);
  font-weight: var(--mm-weight-heading);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.brand-grid--priority {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card,
.brand-row {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  background: var(--mm-white);
  box-shadow: 0 12px 34px rgba(23, 23, 27, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.brand-card {
  min-height: 184px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.brand-card:hover,
.brand-row:hover {
  border-color: rgba(215, 25, 32, 0.34);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(23, 23, 27, 0.1);
}

.brand-card span,
.brand-row span {
  width: fit-content;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.brand-card strong,
.brand-row strong {
  font-size: var(--mm-h-card);
  line-height: var(--mm-line-heading);
}

.brand-card p,
.brand-row p {
  margin: 0;
  color: var(--mm-muted);
}

.brand-directory {
  display: grid;
  gap: 0.75rem;
}

.brand-row {
  padding: 0.95rem 1rem;
  display: grid;
  grid-template-columns: 0.7fr 0.5fr minmax(0, 1.2fr);
  align-items: center;
  gap: 1rem;
}

.brand-directory-hero {
  padding-bottom: 1.8rem;
}

.brand-directory-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-directory-hero__stats div {
  padding: 1.1rem;
  display: grid;
  align-content: center;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: var(--mm-radius);
  background: var(--mm-soft-red);
}

.brand-directory-hero__stats strong {
  color: var(--mm-red);
  font-size: 2rem;
  line-height: 1;
}

.brand-directory-hero__stats span {
  margin-top: 0.25rem;
  color: var(--mm-muted);
  font-weight: 800;
}

.brand-category-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.brand-category-nav a {
  min-height: 92px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  box-shadow: 0 10px 28px rgba(23, 23, 27, 0.045);
}

.brand-category-nav span {
  color: var(--mm-ink);
  font-weight: var(--mm-weight-heading);
  line-height: var(--mm-line-heading);
}

.brand-category-nav strong {
  width: fit-content;
  min-width: 34px;
  height: 34px;
  padding: 0 0.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--mm-white);
  background: var(--mm-red);
  font-size: var(--mm-text-sm);
}

.brand-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card--catalog {
  min-height: 250px;
  padding: 1.1rem;
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mm-white);
  background: radial-gradient(circle at 35% 30%, #ff5b61, var(--mm-red) 52%, var(--mm-red-dark) 100%);
  font-size: var(--mm-h-small);
  font-weight: var(--mm-weight-heading);
  letter-spacing: 0;
}

.brand-card--catalog .brand-logo-mark,
.brand-row--catalog .brand-logo-mark {
  padding: 0;
  color: var(--mm-white);
  background: radial-gradient(circle at 35% 30%, #ff5b61, var(--mm-red) 52%, var(--mm-red-dark) 100%);
}

.brand-card__category,
.brand-row__category {
  width: fit-content;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
}

.brand-card--catalog .brand-card__category,
.brand-row--catalog .brand-row__category {
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
}

.brand-directory-grid {
  display: grid;
  gap: 2.2rem;
}

.brand-category-panel {
  padding-top: 1.15rem;
  border-top: 1px solid var(--mm-line);
}

.brand-category-panel__heading {
  margin-bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.brand-category-panel__heading h3 {
  margin-bottom: 0;
  font-size: var(--mm-h3);
}

.brand-category-panel__heading span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--mm-red-dark);
  background: var(--mm-soft-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-row--catalog {
  grid-template-columns: 42px minmax(150px, 0.6fr) minmax(120px, 0.45fr) minmax(0, 1fr);
}

.brand-row--catalog p {
  margin: 0;
}

.brand-support-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4rem max(16px, calc((100vw - var(--mm-max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  color: var(--mm-white);
  background: var(--mm-ink);
}

.brand-support-panel h2,
.brand-support-panel p {
  max-width: 760px;
}

.brand-support-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-support-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.brand-support-panel .button--ghost {
  color: var(--mm-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.news-section {
  border-top: 1px solid var(--mm-line);
}

.post-card {
  overflow: hidden;
}

.post-card div {
  padding: 1.2rem;
}

.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-card__date {
  color: var(--mm-red);
  font-size: var(--mm-text-xs);
  font-weight: var(--mm-weight-label);
}

.post-card--empty {
  grid-column: 1 / -1;
  padding: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: var(--mm-weight-heading);
}

.page-hero {
  width: min(var(--mm-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.page-hero > div {
  max-width: 850px;
}

.content-wrap {
  padding: 1rem 0 5rem;
}

.content-wrap--narrow {
  max-width: 850px;
}

.entry-content {
  font-size: var(--mm-text-lead);
}

.entry-content a {
  color: var(--mm-red);
  font-weight: var(--mm-weight-heading);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2rem;
}

.featured-image {
  margin: 0 0 2rem;
}

.featured-image img {
  border-radius: 12px;
}

.site-footer {
  padding: 4rem max(16px, calc((100vw - var(--mm-max)) / 2)) 2rem;
  color: var(--mm-white);
  background: #101013;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  font-size: var(--mm-h-small);
}

.footer-brand-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  line-height: 0;
}

.footer-brand-logo img {
  width: min(250px, 100%);
  height: auto;
  object-fit: contain;
}

.site-footer a:hover {
  color: #ffb7ba;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer__bottom {
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
}

.navigation.pagination {
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    background: var(--mm-white);
    color: var(--mm-ink);
    font-weight: 800;
  }

  .menu-toggle span {
    width: 14px;
    height: 2px;
    display: block;
    background: var(--mm-ink);
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    padding: 1rem;
    border: 1px solid var(--mm-line);
    border-radius: 12px;
    background: var(--mm-white);
    box-shadow: var(--mm-shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list,
  .primary-nav ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }

  .hero-section,
  .split-section,
  .page-hero--with-visual,
  .store-layout,
  .brand-cta-band,
  .brand-support-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-section--brandscape {
    grid-template-columns: 1fr;
  }

  .page-hero--with-visual {
    padding-top: 3rem;
  }

  .hero-visual {
    height: 440px;
    min-height: 0;
  }

  .hero-visual--brandscape {
    height: auto;
    min-height: 0;
  }

  .category-grid,
  .brand-grid,
  .brand-grid--priority,
  .brand-category-nav,
  .brand-showcase,
  .brand-fit-grid,
  .brand-product-grid,
  .wholesale-segments,
  .official-brand-grid,
  .store-gallery,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-strip {
    grid-template-columns: 1fr;
  }

  .store-directory {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-map-panel {
    position: static;
  }

  .brand-row--catalog {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .brand-row--catalog .brand-row__category,
  .brand-row--catalog p {
    grid-column: 2;
  }

  .brand-support-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --mm-text-lead: 1rem;
    --mm-h1: 2rem;
    --mm-h2: 1.55rem;
    --mm-h3: 1.125rem;
    --mm-h-card: 1.0625rem;
  }

  .site-header--brandscape .site-header__inner {
    min-height: 72px;
    padding-right: 0;
  }

  .brand-mark--integrated {
    width: min(190px, 54vw);
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark__word {
    display: grid;
  }

  .brand-mark__logo--full {
    display: block;
    width: 100%;
    max-height: 42px;
  }

  .brand-mark__logo--compact {
    display: none;
  }

  .brand-mark__tagline {
    display: none;
  }

  .site-header__inner,
  .section,
  .page-hero,
  .content-wrap,
  .hero-section {
    width: min(100% - 24px, var(--mm-max));
  }

  .hero-actions,
  .hero-actions .button,
  .button {
    width: 100%;
  }

  .trust-list,
  .category-grid,
  .brand-grid,
  .brand-grid--priority,
  .brand-directory-hero__stats,
  .brand-category-nav,
  .brand-showcase,
  .brand-fit-grid,
  .brand-product-grid,
  .wholesale-segments,
  .official-brand-grid,
  .store-gallery,
  .post-grid,
  .store-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand-row {
    grid-template-columns: 1fr;
  }

  .brand-row--catalog {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
  }

  .brand-row--catalog .brand-logo-mark {
    width: 42px;
    height: 42px;
    min-width: 42px;
    grid-row: span 3;
  }

  .brand-row--catalog .brand-row__category,
  .brand-row--catalog p {
    grid-column: 2;
  }

  .brand-category-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-city-tabs,
  .store-city-tabs button {
    width: 100%;
  }

  .hero-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quick-links a {
    text-align: center;
  }

  .hero-visual {
    height: auto;
    min-height: 300px;
  }

  .page-hero--with-visual {
    gap: 1.2rem;
  }

  .page-visual img {
    aspect-ratio: 16 / 10;
  }

  .hero-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-visual--brandscape {
    grid-template-rows: auto auto;
  }

  .hero-visual--brandscape .hero-visual__media > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-visual__media {
    min-height: 280px;
  }

  .hero-visual__proof {
    grid-template-columns: 1fr;
  }

  .hero-visual__badge {
    position: static;
    width: 100%;
    border-radius: 0;
  }

  .category-card {
    min-height: 0;
  }

  .brand-guide,
  .brand-fit-grid article,
  .brand-product-grid article {
    min-height: 0;
  }

  .brand-cta-band {
    align-items: flex-start;
  }

  .brand-support-panel {
    align-items: flex-start;
  }

  .brand-support-panel__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Stitch editorial redesign layer */
:root {
  --mm-editorial-bg: #fbf7f7;
  --mm-editorial-surface: #fffdfd;
  --mm-editorial-line: #eadddd;
  --mm-editorial-ink: #201616;
  --mm-editorial-muted: #6f6262;
  --mm-editorial-brown: #3b2422;
  --mm-editorial-shadow: 0 22px 48px rgba(32, 22, 22, 0.08);
}

body {
  background: var(--mm-editorial-bg);
}

.site-header--editorial {
  background: rgba(251, 247, 247, 0.96);
  border-bottom: 1px solid var(--mm-editorial-line);
  backdrop-filter: blur(18px);
}

.site-header--editorial .site-header__inner {
  min-height: 72px;
  gap: clamp(1rem, 2vw, 2rem);
}

.brand-mark--text {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark--text .brand-mark__word {
  display: grid;
  justify-items: start;
  gap: 0.1rem;
  text-align: left;
}

.brand-mark--text .brand-mark__name {
  color: var(--mm-red);
  font-family: var(--mm-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: none;
}

.brand-mark--text .brand-mark__tagline {
  max-width: 280px;
  color: var(--mm-editorial-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  white-space: normal;
}

.site-header--editorial .primary-nav a {
  color: var(--mm-editorial-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header--editorial .primary-nav a:hover {
  color: var(--mm-red);
}

.site-header--editorial .header-cta {
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 0;
  text-transform: uppercase;
}

.hero-section--editorial {
  width: min(1220px, calc(100% - 48px));
  min-height: min(720px, calc(100vh - 96px));
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 3rem;
}

.hero-section--editorial .hero-section__content {
  max-width: 620px;
}

.hero-section--editorial h1 {
  color: var(--mm-editorial-ink);
  font-family: var(--mm-font-heading);
  font-size: var(--mm-h1);
  font-weight: 700;
  line-height: 1.05;
}

.hero-section--editorial .hero-lead {
  max-width: 590px;
  color: var(--mm-editorial-muted);
  font-size: 1.05rem;
}

.hero-section--editorial .button,
.editorial-task-rail .store-summary span {
  border-radius: 0;
}

.hero-section--editorial .button--ghost {
  background: transparent;
  border-color: var(--mm-editorial-line);
}

.hero-visual--editorial {
  height: auto;
  min-height: 0;
  display: grid;
  gap: 1rem;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual--editorial .hero-visual__media {
  min-height: clamp(420px, 48vw, 620px);
  border: 1px solid var(--mm-editorial-line);
  border-radius: 0;
  background: var(--mm-editorial-surface);
  box-shadow: none;
}

.hero-visual--editorial .hero-visual__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid var(--mm-editorial-line);
  background: var(--mm-editorial-surface);
}

.hero-visual--editorial .hero-visual__badge {
  left: 2rem;
  bottom: 2rem;
  width: min(360px, calc(100% - 4rem));
  border-radius: 0;
  color: var(--mm-editorial-ink);
  background: rgba(251, 247, 247, 0.94);
  box-shadow: var(--mm-editorial-shadow);
}

.hero-visual--editorial .hero-visual__badge span {
  color: var(--mm-red);
  letter-spacing: 0;
}

.hero-visual--editorial .hero-visual__badge strong {
  font-family: var(--mm-font-heading);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-visual--editorial .hero-visual__proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-visual--editorial .hero-visual__proof span {
  min-height: 58px;
  border-color: var(--mm-editorial-line);
  border-radius: 0;
  background: var(--mm-editorial-surface);
}

.editorial-task-rail {
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100vw - 1220px) / 2)) 4.5rem;
  border-bottom: 1px solid var(--mm-editorial-line);
}

.editorial-task-rail .store-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--mm-editorial-line);
}

.editorial-task-rail .store-summary span {
  min-height: 86px;
  padding: 1.1rem 1.25rem;
  border: 0;
  border-right: 1px solid var(--mm-editorial-line);
  background: transparent;
}

.editorial-task-rail .store-summary span:last-child {
  border-right: 0;
}

.section:not(.section--dark) {
  background: transparent;
}

.section-heading h2 {
  font-family: var(--mm-font-heading);
  font-size: var(--mm-h2);
  font-weight: 400;
  line-height: 1.12;
}

.category-grid--editorial {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-grid--editorial .category-card {
  min-height: 430px;
  padding: 1.1rem;
  gap: 1rem;
  border-color: var(--mm-editorial-line);
  border-radius: 0;
  background: rgba(255, 253, 253, 0.82);
  box-shadow: none;
}

.category-grid--editorial .category-card:hover {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: var(--mm-editorial-shadow);
}

.category-grid--editorial .category-card__media-wrap,
.category-grid--editorial .category-card__media {
  border-radius: 0;
}

.category-grid--editorial .category-card span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  letter-spacing: 0;
}

.category-grid--editorial .category-card h3 {
  font-family: var(--mm-font-heading);
  font-size: 1.45rem;
  font-weight: 400;
}

.pro-editorial-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5.5rem max(24px, calc((100vw - 1220px) / 2));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  color: var(--mm-white);
  background: var(--mm-editorial-brown);
}

.pro-editorial-band .eyebrow {
  color: #f7c47a;
}

.pro-editorial-band h2,
.pro-editorial-band h3 {
  color: var(--mm-white);
  font-family: var(--mm-font-heading);
  font-weight: 400;
}

.pro-editorial-band p,
.pro-editorial-band li {
  color: rgba(255, 255, 255, 0.76);
}

.pro-editorial-band .feature-panel {
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

.pro-editorial-band .check-list li::before {
  background: var(--mm-red);
}

.store-gallery--editorial .store-gallery__item {
  border-color: var(--mm-editorial-line);
  border-radius: 0;
  background: var(--mm-editorial-surface);
  box-shadow: none;
}

.store-gallery--editorial .store-gallery__item img {
  aspect-ratio: 5 / 4;
}

@media (max-width: 960px) {
  .hero-section--editorial,
  .pro-editorial-band {
    grid-template-columns: 1fr;
  }

  .hero-section--editorial {
    min-height: 0;
  }

  .editorial-task-rail .store-summary,
  .category-grid--editorial,
  .store-gallery--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header--editorial .site-header__inner {
    min-height: 70px;
  }

  .brand-mark--text .brand-mark__name {
    font-size: 1.75rem;
  }

  .brand-mark--text .brand-mark__tagline {
    display: none;
  }

  .hero-section--editorial {
    width: min(100% - 24px, 1220px);
    padding-top: 3rem;
  }

  .hero-section--editorial h1 {
    font-size: 2.6rem;
  }

  .hero-visual--editorial .hero-visual__media {
    min-height: 300px;
  }

  .hero-visual--editorial .hero-visual__media::before {
    inset: 10px -10px -10px 10px;
  }

  .hero-visual--editorial .hero-visual__badge {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .hero-visual--editorial .hero-visual__proof,
  .editorial-task-rail .store-summary,
  .category-grid--editorial,
  .store-gallery--editorial {
    grid-template-columns: 1fr;
  }

  .editorial-task-rail {
    padding-inline: 12px;
  }

  .editorial-task-rail .store-summary span {
    border-right: 0;
    border-bottom: 1px solid var(--mm-editorial-line);
  }

  .category-grid--editorial .category-card {
    min-height: 0;
  }

  .pro-editorial-band {
    padding-inline: 16px;
  }
}

/* Exact Stitch home rebuild */
:root {
  --mm-stitch-surface: #fff8f7;
  --mm-stitch-neutral: #ffffff;
  --mm-stitch-container-low: #fff0ef;
  --mm-stitch-line: #e5e5e5;
  --mm-stitch-ink: #291715;
  --mm-stitch-muted: #5d3f3c;
  --mm-stitch-red: #ba0015;
  --mm-stitch-red-strong: #e21f26;
  --mm-stitch-footer: #402b29;
  --mm-stitch-max: 1280px;
}

body {
  background: var(--mm-stitch-surface);
}

.site-main {
  padding-top: 80px;
}

.site-header--stitch {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--mm-stitch-surface);
  border-bottom: 1px solid var(--mm-stitch-line);
  backdrop-filter: none;
}

.site-header--stitch .site-header__inner {
  width: min(var(--mm-stitch-max), calc(100% - 64px));
  min-height: 80px;
  gap: 2rem;
}

.brand-mark--stitch {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
}

.brand-mark--stitch img {
  width: auto;
  height: 50px;
  max-width: 270px;
  object-fit: contain;
  border-radius: 0;
}

.site-header--stitch .primary-nav {
  margin-left: 0;
}

.site-header--stitch .primary-nav__list,
.site-header--stitch .primary-nav ul {
  gap: 1.5rem;
}

.site-header--stitch .primary-nav a {
  color: var(--mm-stitch-ink);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header--stitch .primary-nav a:hover {
  color: var(--mm-stitch-red);
}

.site-header--stitch .header-cta--stitch {
  margin-left: auto;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  color: var(--mm-white);
  background: var(--mm-stitch-red);
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header--stitch .header-cta--stitch:hover {
  color: var(--mm-white);
  background: var(--mm-stitch-red-strong);
  transform: none;
}

.stitch-home {
  color: var(--mm-stitch-ink);
  background: var(--mm-stitch-surface);
}

.stitch-container {
  width: min(var(--mm-stitch-max), calc(100% - 64px));
  margin: 0 auto;
}

.stitch-hero {
  padding: 7.5rem 0;
}

.stitch-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 4rem;
}

.stitch-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stitch-eyebrow {
  display: block;
  margin: 0;
  color: var(--mm-stitch-red);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.stitch-hero h1,
.stitch-section-head h2 {
  margin: 0;
  color: var(--mm-stitch-ink);
  font-family: var(--mm-font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.stitch-hero h1 {
  max-width: 11em;
  font-size: var(--mm-h1);
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
}

.stitch-lead {
  max-width: 620px;
  margin: 0;
  color: var(--mm-stitch-muted);
  font-size: 1.125rem;
  line-height: 1.56;
}

.stitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.stitch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.stitch-button--primary {
  color: var(--mm-white);
  background: var(--mm-stitch-red);
}

.stitch-button--primary:hover {
  color: var(--mm-white);
  background: var(--mm-stitch-red-strong);
}

.stitch-button--ghost {
  color: var(--mm-stitch-ink);
  background: transparent;
  border-color: var(--mm-stitch-line);
}

.stitch-button--ghost:hover {
  color: var(--mm-stitch-red);
  border-color: var(--mm-stitch-ink);
}

.stitch-hero__visual {
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--mm-stitch-line);
  background: var(--mm-stitch-container-low);
}

.stitch-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.stitch-hero__visual:hover img {
  transform: scale(1.04);
}

.stitch-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.stitch-hero__caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  max-width: 520px;
  color: var(--mm-white);
}

.stitch-hero__caption p {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.stitch-hero__caption strong {
  display: block;
  font-family: var(--mm-font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
}

.stitch-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mm-stitch-line);
}

.stitch-task-card {
  min-width: 0;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--mm-stitch-line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--mm-stitch-ink);
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.stitch-task-card:hover {
  color: var(--mm-stitch-red);
  border-color: #f4d2cf;
  background: var(--mm-stitch-neutral);
}

.stitch-task-card strong {
  font-weight: 800;
}

.stitch-task-card span {
  color: var(--mm-stitch-ink);
}

.stitch-pro-section {
  padding: 7.5rem 0;
  background: var(--mm-stitch-container-low);
  border-top: 1px solid var(--mm-stitch-line);
}

.stitch-pro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 4rem;
}

.stitch-pro-section__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.stitch-pro-section h2 {
  max-width: 780px;
  margin: 0;
  color: var(--mm-stitch-ink);
  font-family: var(--mm-font-heading);
  font-size: var(--mm-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.stitch-pro-section__copy > p:not(.stitch-eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--mm-stitch-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-align: left;
  text-align-last: left;
}

.stitch-pro-section__visual {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--mm-stitch-line);
  background: var(--mm-stitch-neutral);
  overflow: hidden;
}

.stitch-pro-section__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--mm-white);
}

.stitch-assortment {
  padding: 7.5rem 0;
  background: var(--mm-stitch-neutral);
  border-top: 1px solid var(--mm-stitch-line);
  border-bottom: 1px solid var(--mm-stitch-line);
}

.stitch-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 5rem;
}

.stitch-section-head > div {
  max-width: 720px;
}

.stitch-section-head h2 {
  margin-top: 1rem;
  font-size: 3rem;
  line-height: 1.16;
}

.stitch-section-head > p {
  max-width: 460px;
  margin: 0;
  color: var(--mm-stitch-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.stitch-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.stitch-category-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--mm-stitch-line);
  border-radius: 0;
  background: var(--mm-stitch-surface);
  color: var(--mm-stitch-ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.stitch-category-card:hover {
  color: var(--mm-stitch-ink);
  background: var(--mm-stitch-container-low);
  border-color: #f4d2cf;
}

.stitch-category-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--mm-stitch-line);
  background: var(--mm-white);
}

.stitch-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.stitch-category-card:hover .stitch-category-card__media img {
  transform: scale(1.04);
}

.stitch-category-card strong {
  display: block;
  min-height: 3.5rem;
  margin: 0.75rem 0;
  color: var(--mm-stitch-ink);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.55;
}

.stitch-category-card:hover strong {
  color: var(--mm-stitch-red);
}

.stitch-category-card em {
  display: block;
  margin-top: auto;
  color: var(--mm-stitch-muted);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
}

.site-footer--stitch {
  padding: 5rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--mm-stitch-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer--stitch .site-footer__stitch-inner {
  width: min(var(--mm-stitch-max), calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer--stitch .site-footer__brandline {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-footer--stitch .footer-brand--stitch {
  flex: 0 0 auto;
  color: #ffb4ac;
}

.footer-brand--stitch img {
  width: auto;
  height: 44px;
  max-width: 240px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .stitch-hero__grid,
  .stitch-pro-section__grid {
    grid-template-columns: 1fr;
  }

  .stitch-hero h1 {
    max-width: 12em;
  }

  .stitch-hero__visual,
  .stitch-pro-section__visual {
    max-width: 760px;
  }
}

.site-footer--stitch .site-footer__brandline span {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer--stitch .site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-footer--stitch .site-footer__links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer--stitch .site-footer__links a:hover {
  color: #ffb4ac;
}

@media (max-width: 980px) {
  .site-header--stitch .site-header__inner {
    width: min(var(--mm-stitch-max), calc(100% - 40px));
  }

  .site-header--stitch .menu-toggle {
    margin-left: auto;
  }

  .site-header--stitch .primary-nav {
    background: var(--mm-stitch-surface);
    border-radius: 0;
  }

  .site-header--stitch .primary-nav__list,
  .site-header--stitch .primary-nav ul {
    gap: 0;
  }

  .site-header--stitch .header-cta--stitch {
    display: none;
  }

  .stitch-hero__grid,
  .stitch-pro-section__grid,
  .stitch-section-head {
    grid-template-columns: 1fr;
  }

  .stitch-category-grid,
  .stitch-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer--stitch .site-footer__stitch-inner,
  .site-footer--stitch .site-footer__brandline {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer--stitch .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-main {
    padding-top: 72px;
  }

  .site-header--stitch .site-header__inner,
  .stitch-container,
  .site-footer--stitch .site-footer__stitch-inner {
    width: min(var(--mm-stitch-max), calc(100% - 40px));
  }

  .site-header--stitch .site-header__inner {
    min-height: 72px;
  }

  .brand-mark--stitch img {
    height: 36px;
    max-width: 210px;
  }

  .stitch-hero,
  .stitch-pro-section,
  .stitch-assortment,
  .site-footer--stitch {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .stitch-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .stitch-lead {
    font-size: 1rem;
  }

  .stitch-actions,
  .stitch-button {
    width: 100%;
  }

  .stitch-hero__caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .stitch-hero__caption strong {
    font-size: 1.5rem;
  }

  .stitch-proof-grid,
  .stitch-category-grid {
    grid-template-columns: 1fr;
  }

  .stitch-proof-grid {
    margin-top: 3rem;
  }

  .stitch-section-head {
    margin-bottom: 3rem;
  }

  .stitch-section-head h2 {
    font-size: 2rem;
  }

  .stitch-category-card {
    min-height: 0;
  }
}

/* Unified typography, spacing and controls across all public pages */
:root {
  --mm-font-heading: var(--mm-font-body);
  --mm-page-gap: 5rem;
  --mm-page-gap-compact: 3.25rem;
  --mm-page-text: #291715;
  --mm-page-muted: #5d3f3c;
  --mm-control-radius: 0px;
}

.site-main :where(.page-hero, .section) {
  width: min(var(--mm-stitch-max), calc(100% - 64px));
  margin-inline: auto;
  padding-block: var(--mm-page-gap);
}

.page-hero--stores {
  padding-bottom: 1.25rem;
}

.store-page {
  padding-top: 1.25rem;
}

.store-directory-card.is-hidden {
  display: none;
}

.store-route-link {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.contact-faq details {
  padding: 1rem 0;
  border-top: 1px solid var(--mm-stitch-line);
}

.contact-faq details:last-child {
  border-bottom: 1px solid var(--mm-stitch-line);
}

.contact-faq summary {
  cursor: pointer;
  color: var(--mm-page-text);
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

.contact-faq p {
  margin: 0.75rem 0 0;
  text-align: left;
  text-align-last: left;
}

.site-main :where(.section--compact) {
  padding-block: var(--mm-page-gap-compact);
}

.site-main :where(h1, h2, h3) {
  color: var(--mm-page-text);
  font-family: var(--mm-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.site-main :where(h1) {
  font-size: var(--mm-h1);
  line-height: 1.16;
}

.site-main :where(h2) {
  font-size: var(--mm-h2);
  line-height: 1.2;
}

.site-main :where(h3) {
  font-size: var(--mm-h3);
  line-height: 1.28;
}

.site-main :where(p, li, dd, .stitch-lead, .stitch-category-card em) {
  color: var(--mm-page-muted);
  font-family: var(--mm-font-body);
  font-size: var(--mm-text-base);
  font-weight: 400;
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
  hyphens: auto;
}

.site-main :where(.eyebrow, .stitch-eyebrow, .brand-card__category, .brand-row__category, dt, .panel-kicker) {
  color: var(--mm-stitch-red);
  font-family: var(--mm-font-body);
  font-size: var(--mm-text-xs);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.button,
.header-cta,
.stitch-button,
.store-city-tabs button {
  min-height: 52px;
  border-radius: var(--mm-control-radius);
  font-family: var(--mm-font-body);
  font-size: var(--mm-text-sm);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-align-last: center;
}

.hero-actions,
.stitch-actions,
.brand-support-panel__actions,
.store-card-actions {
  align-items: center;
  gap: 1rem;
}

.category-grid,
.brand-showcase,
.brand-directory-grid,
.store-directory,
.wholesale-segments {
  gap: 2rem;
}

.category-card,
.brand-card,
.brand-row,
.segment-card,
.feature-panel,
.store-directory-card {
  border-radius: 0;
}

.category-card h3,
.brand-card strong,
.brand-row strong,
.segment-card h3 {
  font-size: var(--mm-h-card);
  line-height: 1.35;
}

.page-visual__body,
.stitch-hero__caption,
.site-footer,
.site-footer :where(p, span, a) {
  text-align: left;
}

@media (max-width: 620px) {
  .site-main :where(.page-hero, .section) {
    width: min(var(--mm-stitch-max), calc(100% - 40px));
    padding-block: 3.75rem;
  }
}

/* Keep editorial display headings from inheriting paragraph-style justification. */
.stitch-section-head h2 {
  max-width: none;
  font-size: var(--mm-h2);
  text-align: left !important;
  text-align-last: left;
  text-wrap: balance;
}

.stitch-section-head > p {
  text-align: left;
  text-align-last: left;
}

/* Final typography guard: page-specific blocks must keep the shared scale. */
.site-main .page-hero h1,
.site-main .stitch-hero h1 {
  font-size: var(--mm-h1) !important;
  font-family: var(--mm-font-heading);
}

.site-main .section-heading h2 {
  font-size: var(--mm-h2) !important;
  font-family: var(--mm-font-heading);
}

.site-main .section-heading h3,
.site-main .category-card h3,
.site-main .segment-card h3,
.site-main .brand-category-panel__heading h3 {
  font-size: var(--mm-h3);
  font-family: var(--mm-font-heading);
}

.site-main .brand-card strong,
.site-main .brand-row strong,
.site-main .stitch-category-card strong {
  font-size: var(--mm-h-card);
  font-family: var(--mm-font-heading);
}


