:root {
    --mm-ink: #22170f;
    --mm-brown: #6b3a0d;
    --mm-honey: #d68b16;
    --mm-honey-soft: #f4b83f;
    --mm-cream: #fff9ed;
    --mm-cream-deep: #f7edd6;
    --mm-sage: #55705a;
    --mm-line: rgba(107, 58, 13, .16);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--mm-cream);
    color: var(--mm-ink);
}

::selection {
    color: #fff;
    background: var(--mm-brown);
}

a {
    color: var(--mm-brown);
}

.site-header.nav-layout-split,
.site-header {
    background: rgba(255, 249, 237, .94);
    border-bottom: 1px solid var(--mm-line);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.site-header .logo img,
.site-header .site-logo img,
.site-header .logo-split img {
    width: auto;
    max-width: min(220px, 48vw);
    max-height: 48px;
}

.site-header .logo-split {
    width: min(190px, 24vw);
}

.site-header .logo-split img {
    width: 190px;
    height: auto;
}

.site-header nav a {
    color: var(--mm-ink);
    font-weight: 700;
    text-underline-offset: .35rem;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
    color: var(--mm-honey);
}

.mobile-menu-overlay-custom {
    background: var(--mm-cream) !important;
}

.btn,
button,
.button,
.btn-primary {
    border-radius: 999px;
}

.mm-home {
    overflow: clip;
    margin-top: -1px;
    background: var(--mm-cream);
}

.mm-home *,
.mm-pillar-shell * {
    box-sizing: border-box;
}

.mm-home a,
.mm-pillar-shell a {
    text-decoration-thickness: 1px;
    text-underline-offset: .28em;
}

.mm-home__hero {
    position: relative;
    min-height: calc(100svh - 80px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
}

.mm-home__hero::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 47%;
    width: min(46vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(214, 139, 22, .2);
    border-radius: 50%;
    pointer-events: none;
}

.mm-home__eyebrow {
    margin: 0 0 1.25rem;
    color: var(--mm-sage);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mm-home__hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--mm-ink);
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 7.4vw, 7.6rem);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: .91;
}

.mm-home__hero h1 em {
    color: var(--mm-honey);
    font-style: italic;
    font-weight: inherit;
}

.mm-home__lead {
    max-width: 640px;
    margin: 1.8rem 0 0;
    color: #594538;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.65;
}

.mm-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2.3rem;
}

.mm-home__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .88rem 1.45rem;
    border: 1px solid var(--mm-brown);
    border-radius: 999px;
    color: #fff !important;
    background: var(--mm-brown);
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.mm-home__button:hover,
.mm-home__button:focus-visible {
    transform: translateY(-2px);
    background: var(--mm-honey);
    border-color: var(--mm-honey);
}

.mm-home__button--ghost {
    color: var(--mm-brown) !important;
    background: transparent;
}

.mm-home__button--ghost:hover,
.mm-home__button--ghost:focus-visible {
    color: #fff !important;
}

.mm-home__visual {
    position: relative;
    z-index: 1;
    animation: mm-float-in .8s cubic-bezier(.2, .8, .2, 1) both;
}

.mm-home__visual img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(.96);
    transition: transform .45s ease;
}

.mm-home__visual:hover img {
    transform: translateY(-8px) rotate(-.5deg);
}

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

.mm-home__routes-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1500px;
    margin: 0 auto;
}

.mm-home__route {
    position: relative;
    min-height: 210px;
    padding: 2rem clamp(1.2rem, 3vw, 2.7rem);
    border-right: 1px solid var(--mm-line);
    color: var(--mm-ink) !important;
    text-decoration: none !important;
    transition: color .2s ease, background-color .25s ease;
}

.mm-home__route:last-child {
    border-right: 0;
}

.mm-home__route span {
    color: var(--mm-honey);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.mm-home__route h2 {
    margin: 2rem 0 .55rem;
    color: inherit;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.08;
}

.mm-home__route p {
    margin: 0;
    color: #6f594a;
    line-height: 1.55;
}

.mm-home__route::after {
    content: "↗";
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.mm-home__route:hover,
.mm-home__route:focus-visible {
    color: #fff !important;
    background: var(--mm-brown);
}

.mm-home__route:hover p,
.mm-home__route:focus-visible p,
.mm-home__route:hover span,
.mm-home__route:focus-visible span {
    color: #fff1b8;
}

.mm-home__route:hover::after,
.mm-home__route:focus-visible::after {
    transform: translate(3px, -3px);
}

.mm-home__editorial,
.mm-home__method,
.mm-home__reference,
.mm-home__final {
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5.5rem);
}

.mm-home__editorial {
    display: grid;
    grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
    gap: clamp(3rem, 9vw, 10rem);
    align-items: start;
}

.mm-home__section-label {
    color: var(--mm-sage);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mm-home__editorial h2,
.mm-home__method h2,
.mm-home__reference h2,
.mm-home__final h2 {
    margin: 0;
    color: var(--mm-ink);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    letter-spacing: -.045em;
    line-height: .98;
}

.mm-home__editorial-copy > p {
    max-width: 850px;
    margin: 1.6rem 0 0;
    color: #594538;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.75;
}

.mm-home__text-link {
    display: inline-flex;
    gap: .6rem;
    margin-top: 2rem;
    color: var(--mm-brown) !important;
    font-weight: 850;
    text-decoration: none !important;
    border-bottom: 1px solid currentColor;
}

.mm-home__method-wrap {
    background: var(--mm-brown);
    color: #fff9ed;
}

.mm-home__method {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.mm-home__method h2,
.mm-home__method .mm-home__section-label {
    color: #fff9ed;
}

.mm-home__method ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: mm-method;
}

.mm-home__method li {
    counter-increment: mm-method;
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 249, 237, .2);
}

.mm-home__method li::before {
    content: "0" counter(mm-method);
    color: var(--mm-honey-soft);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.mm-home__method strong {
    display: block;
    margin-bottom: .35rem;
    color: #fff;
    font-size: 1.08rem;
}

.mm-home__method p {
    margin: 0;
    color: #e8dccd;
    line-height: 1.6;
}

.mm-home__reference {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: center;
}

.mm-home__reference-media img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(107, 58, 13, .16);
}

.mm-home__reference-copy p {
    color: #594538;
    font-size: 1.08rem;
    line-height: 1.7;
}

.mm-home__final-wrap {
    background: var(--mm-sage);
}

.mm-home__final {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    color: #fff;
}

.mm-home__final h2 {
    max-width: 900px;
    color: #fff;
}

.mm-home__final .mm-home__button {
    flex: 0 0 auto;
    background: var(--mm-cream);
    border-color: var(--mm-cream);
    color: var(--mm-ink) !important;
}

.mm-category {
    --mm-category-accent: var(--mm-honey);
    overflow: clip;
    margin-top: -1px;
    color: var(--mm-ink);
    background: var(--mm-cream);
}

.mm-category *,
.mm-category *::before,
.mm-category *::after {
    box-sizing: border-box;
}

.mm-category__hero {
    position: relative;
    overflow: hidden;
    min-height: min(760px, calc(100svh - 80px));
    display: grid;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(255, 249, 237, .96), rgba(247, 237, 214, .84)),
        var(--mm-cream-deep);
    border-bottom: 1px solid var(--mm-line);
}

.mm-category__hero::before,
.mm-category__hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mm-category__hero::before {
    top: -34%;
    right: -11%;
    width: min(62vw, 920px);
    aspect-ratio: 1;
    border: clamp(40px, 7vw, 110px) solid color-mix(in srgb, var(--mm-category-accent) 15%, transparent);
}

.mm-category__hero::after {
    right: 26%;
    bottom: -24%;
    width: min(23vw, 320px);
    aspect-ratio: 1;
    background: color-mix(in srgb, var(--mm-category-accent) 8%, transparent);
}

.mm-category__hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 9rem);
    width: min(1500px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) clamp(0rem, 3vw, 3rem);
}

.mm-category__hero-copy {
    max-width: 850px;
    animation: mm-category-rise .65s cubic-bezier(.2, .8, .2, 1) both;
}

.mm-category__breadcrumbs {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.mm-category__breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-category__breadcrumbs li {
    display: inline-flex;
    gap: .42rem;
    align-items: center;
    color: #776355;
    font-size: .82rem;
    font-weight: 700;
}

.mm-category__breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.mm-category__breadcrumbs a:hover,
.mm-category__breadcrumbs a:focus-visible {
    color: var(--mm-category-accent);
}

.mm-category__breadcrumb-separator {
    opacity: .45;
}

.mm-category__eyebrow,
.mm-category__section-heading > p,
.mm-category__proof-label,
.mm-category__closing > div > p {
    margin: 0;
    color: var(--mm-category-accent);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mm-category__hero h1 {
    max-width: 900px;
    margin: 1rem 0 0;
    color: var(--mm-ink);
    font-size: clamp(3.25rem, 7vw, 7rem);
    letter-spacing: -.055em;
    line-height: .92;
}

.mm-category__lead {
    max-width: 720px;
    margin: 1.65rem 0 0;
    color: #594538;
    font-size: clamp(1.05rem, 1.65vw, 1.28rem);
    line-height: 1.62;
}

.mm-category__hero-link {
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    margin-top: 2rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid currentColor;
    color: var(--mm-brown) !important;
    font-weight: 850;
    text-decoration: none !important;
}

.mm-category__hero-link span {
    transition: transform .2s ease;
}

.mm-category__hero-link:hover span,
.mm-category__hero-link:focus-visible span {
    transform: translateY(4px);
}

.mm-category__visual {
    position: relative;
    width: min(100%, 530px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: end;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid color-mix(in srgb, var(--mm-category-accent) 42%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--mm-category-accent) 7%, var(--mm-cream));
    animation: mm-category-scale .8s .12s cubic-bezier(.2, .8, .2, 1) both;
}

.mm-category__visual::before,
.mm-category__visual::after {
    content: "";
    position: absolute;
    inset: 9%;
    border: 1px solid color-mix(in srgb, var(--mm-category-accent) 25%, transparent);
    border-radius: 50%;
}

.mm-category__visual::after {
    inset: 20%;
    border-style: dashed;
}

.mm-category__visual-index,
.mm-category__visual-name,
.mm-category__visual-signature {
    position: absolute;
    z-index: 2;
    color: #6f594a;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mm-category__visual-index {
    top: 13%;
}

.mm-category__visual-name {
    right: 7%;
    bottom: 30%;
    transform: rotate(90deg);
}

.mm-category__visual-signature {
    bottom: 13%;
    max-width: 70%;
    text-align: center;
}

.mm-category__visual-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34%;
    aspect-ratio: 1;
    color: var(--mm-category-accent);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    filter: saturate(.85);
}

.mm-category__visual img {
    position: relative;
    z-index: 2;
    width: 62%;
    height: 62%;
    object-fit: cover;
    border-radius: 50%;
}

.mm-category__content {
    width: min(1380px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.mm-category__routes,
.mm-category__guides,
.mm-category__editorial,
.mm-category__subcategories {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    border-bottom: 1px solid var(--mm-line);
    scroll-margin-top: 7rem;
}

.mm-category__section-heading {
    display: grid;
    grid-template-columns: minmax(180px, .46fr) minmax(0, 1.54fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.mm-category__section-heading h2 {
    max-width: 820px;
    margin: -.15em 0 0;
    color: var(--mm-ink);
    font-size: clamp(2.35rem, 4.8vw, 5rem);
    letter-spacing: -.045em;
    line-height: .98;
}

.mm-category__route-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--mm-line);
    border-bottom: 1px solid var(--mm-line);
}

.mm-category__route {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border-right: 1px solid var(--mm-line);
    color: var(--mm-ink) !important;
    text-decoration: none !important;
    transition: color .25s ease, background-color .25s ease;
}

.mm-category__route:last-child {
    border-right: 0;
}

.mm-category__route-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--mm-category-accent);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.mm-category__route-meta span {
    font-family: var(--font-body);
    transition: transform .2s ease;
}

.mm-category__route h3 {
    margin: auto 0 .8rem;
    color: inherit;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.08;
}

.mm-category__route p {
    margin: 0;
    color: #6f594a;
    line-height: 1.58;
}

.mm-category__route:hover,
.mm-category__route:focus-visible {
    color: #fff !important;
    background: var(--mm-category-accent);
}

.mm-category__route:hover p,
.mm-category__route:focus-visible p,
.mm-category__route:hover .mm-category__route-meta,
.mm-category__route:focus-visible .mm-category__route-meta {
    color: #fff9ed;
}

.mm-category__route:hover .mm-category__route-meta span,
.mm-category__route:focus-visible .mm-category__route-meta span {
    transform: translate(4px, -4px);
}

.mm-category__article-list {
    display: grid;
    gap: 1px;
    background: var(--mm-line);
    border: 1px solid var(--mm-line);
}

.mm-category__article {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    min-height: 360px;
    color: var(--mm-ink) !important;
    background: var(--mm-cream);
    text-decoration: none !important;
}

.mm-category__article-media {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--mm-category-accent) 10%, var(--mm-cream-deep));
}

.mm-category__article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.mm-category__article-placeholder {
    color: var(--mm-category-accent);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 8rem);
}

.mm-category__article-copy {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem);
}

.mm-category__article-label {
    margin-bottom: 1.2rem;
    color: var(--mm-category-accent);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mm-category__article-copy > strong {
    max-width: 760px;
    color: var(--mm-ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: -.04em;
    line-height: 1;
}

.mm-category__article-summary {
    max-width: 720px;
    margin-top: 1.25rem;
    color: #665144;
    font-size: 1.02rem;
    line-height: 1.7;
}

.mm-category__article-action {
    margin-top: 2rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid currentColor;
    color: var(--mm-brown);
    font-weight: 850;
}

.mm-category__article:hover img,
.mm-category__article:focus-visible img {
    transform: scale(1.035);
}

.mm-category__article:hover .mm-category__article-action span,
.mm-category__article:focus-visible .mm-category__article-action span {
    display: inline-block;
    transform: translateX(5px);
}

.mm-category__pagination {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 2.5rem;
}

.mm-category__pagination a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--mm-line);
    border-radius: 50%;
    color: var(--mm-ink);
    text-decoration: none;
}

.mm-category__pagination a[aria-current="page"] {
    color: #fff;
    background: var(--mm-category-accent);
    border-color: var(--mm-category-accent);
}

.mm-category__editorial {
    display: grid;
    grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
    gap: clamp(2rem, 8vw, 8rem);
}

.mm-category__editorial .mm-category__section-heading {
    display: block;
    margin: 0;
}

.mm-category__editorial .mm-category__section-heading h2 {
    margin-top: 1rem;
}

.mm-category__editorial-copy {
    max-width: 820px;
    color: #4f3f34;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.78;
}

.mm-category__editorial-copy p {
    margin: 0 0 1.3rem;
}

.mm-category__editorial-copy p:last-child {
    margin-bottom: 0;
}

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

.mm-category__subcategory-list a {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--mm-line);
    color: var(--mm-ink);
    font-size: clamp(1.08rem, 2vw, 1.5rem);
    font-weight: 750;
    text-decoration: none;
}

.mm-category__proof {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: clamp(4.5rem, 9vw, 8rem) 0;
    color: #fff9ed;
    background: var(--mm-ink);
}

.mm-category__fact,
.mm-category__method {
    padding: clamp(2.2rem, 5vw, 4.5rem);
}

.mm-category__fact {
    border-right: 1px solid rgba(255, 249, 237, .18);
}

.mm-category__proof-label {
    color: color-mix(in srgb, var(--mm-category-accent) 76%, #fff);
}

.mm-category__fact h2 {
    margin: 1.1rem 0 .8rem;
    color: #fff9ed;
    font-size: clamp(1.65rem, 3vw, 2.7rem);
    letter-spacing: -.025em;
}

.mm-category__fact p:not(.mm-category__proof-label),
.mm-category__method > p:not(.mm-category__proof-label) {
    max-width: 670px;
    margin: 0;
    color: #e8dccd;
    line-height: 1.72;
}

.mm-category__method a {
    display: inline-flex;
    gap: .5rem;
    margin-top: 1.8rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid currentColor;
    color: #fff9ed;
    font-weight: 800;
    text-decoration: none;
}

.mm-category__closing {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(2rem, 7vw, 7rem);
    width: min(1380px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 0 0 clamp(5rem, 10vw, 9rem);
}

.mm-category__closing h2 {
    max-width: 900px;
    margin: .9rem 0 0;
    color: var(--mm-ink);
    font-size: clamp(2.1rem, 4.2vw, 4.5rem);
    letter-spacing: -.04em;
    line-height: 1;
}

.mm-category__closing > a {
    flex: 0 0 auto;
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    min-height: 52px;
    padding: .85rem 1.4rem;
    border: 1px solid var(--mm-brown);
    border-radius: 999px;
    color: #fff;
    background: var(--mm-brown);
    font-weight: 850;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

.mm-category__closing > a:hover,
.mm-category__closing > a:focus-visible {
    transform: translateY(-2px);
    background: var(--mm-category-accent);
    border-color: var(--mm-category-accent);
}

@keyframes mm-category-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes mm-category-scale {
    from {
        opacity: 0;
        transform: scale(.94) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.mm-pillar-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) 1.25rem 1rem;
}

.mm-pillar-intro {
    display: grid;
    grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 7vw, 7rem);
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
    border-bottom: 1px solid var(--mm-line);
}

.mm-pillar-intro__label {
    color: var(--mm-sage);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mm-pillar-intro__copy {
    color: #4f3f34;
    font-size: clamp(1.08rem, 1.65vw, 1.28rem);
    line-height: 1.78;
}

.mm-pillar-intro__copy p:first-child {
    margin-top: 0;
}

.mm-pillar-routes {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.mm-pillar-routes h2,
.mm-pillar-method h2 {
    max-width: 760px;
    margin: 0 0 2.5rem;
    color: var(--mm-ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -.035em;
}

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

.mm-pillar-route {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--mm-line);
    color: var(--mm-ink) !important;
    text-decoration: none !important;
}

.mm-pillar-route__number {
    color: var(--mm-honey);
    font-family: var(--font-heading);
}

.mm-pillar-route strong {
    display: block;
    color: inherit;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.mm-pillar-route small {
    display: block;
    margin-top: .25rem;
    color: #725d4e;
    font-size: .94rem;
}

.mm-pillar-route__arrow {
    transition: transform .2s ease;
}

.mm-pillar-route:hover .mm-pillar-route__arrow,
.mm-pillar-route:focus-visible .mm-pillar-route__arrow {
    transform: translateX(6px);
}

.mm-pillar-method {
    margin-bottom: clamp(3.5rem, 7vw, 6rem);
    padding: clamp(2rem, 5vw, 4rem);
    color: #fff;
    background: var(--mm-sage);
    border-radius: 1.5rem;
}

.mm-pillar-method h2 {
    color: #fff;
}

.mm-pillar-method p {
    max-width: 880px;
    margin: 0;
    color: #eff5ec;
    line-height: 1.75;
}

.mm-pillar-closing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1280px;
    margin: clamp(4rem, 8vw, 8rem) auto;
    padding: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid var(--mm-line);
    border-bottom: 1px solid var(--mm-line);
}

.mm-pillar-closing h2 {
    margin: 0;
    color: var(--mm-ink);
    font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.mm-pillar-closing a {
    flex: 0 0 auto;
    color: var(--mm-brown);
    font-weight: 850;
}

.article-content {
    color: #3d3028;
}

.article-content h2 {
    color: var(--mm-ink);
    letter-spacing: -.025em;
}

.article-content a {
    color: var(--mm-brown);
}

.mm-note {
    margin: 2rem 0;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--mm-honey);
    color: #4c392b;
    background: #fff3ce;
}

.site-footer {
    background: #24170f;
}

.site-footer,
.site-footer a,
.site-footer p {
    color: #e9dfd2;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: #fff9ed;
}

@keyframes mm-float-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mm-home__visual {
        animation: none;
    }

    .mm-category__hero-copy,
    .mm-category__visual {
        animation: none;
    }

    .mm-home__visual img,
    .mm-home__button,
    .mm-home__route,
    .mm-home__route::after,
    .mm-category__hero-link span,
    .mm-category__route,
    .mm-category__route-meta span,
    .mm-category__article-media img,
    .mm-category__closing > a,
    .mm-pillar-route__arrow {
        transition: none;
    }
}

@media (max-width: 980px) {
    .mm-home__hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 4rem;
    }

    .mm-home__hero::before {
        top: auto;
        right: -20%;
        bottom: 4%;
        left: auto;
        width: 75vw;
    }

    .mm-home__visual {
        width: min(720px, 94%);
        margin: 0 auto;
    }

    .mm-home__routes-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .mm-home__route:nth-child(2) {
        border-right: 0;
    }

    .mm-home__route:nth-child(-n+2) {
        border-bottom: 1px solid var(--mm-line);
    }

    .mm-home__editorial,
    .mm-home__method,
    .mm-home__reference {
        grid-template-columns: 1fr;
    }

    .mm-home__final {
        align-items: start;
        flex-direction: column;
    }

    .mm-category__hero {
        min-height: auto;
    }

    .mm-category__hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
        gap: 2.5rem;
    }

    .mm-category__visual {
        width: min(100%, 390px);
    }

    .mm-category__section-heading,
    .mm-category__editorial {
        grid-template-columns: minmax(160px, .4fr) minmax(0, 1fr);
        gap: 2.5rem;
    }

    .mm-category__route-list {
        grid-template-columns: 1fr;
    }

    .mm-category__route {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--mm-line);
    }

    .mm-category__route:last-child {
        border-bottom: 0;
    }

    .mm-category__route h3 {
        margin-top: 3rem;
    }

    .mm-category__article {
        grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
    }

    .mm-category__proof {
        grid-template-columns: 1fr;
    }

    .mm-category__fact {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 249, 237, .18);
    }

    .mm-category__closing {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .mm-home__hero {
        gap: 2.5rem;
        padding-top: 3rem;
    }

    .mm-home__hero h1 {
        font-size: clamp(3rem, 16vw, 4.9rem);
    }

    .mm-home__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mm-home__button {
        width: 100%;
    }

    .mm-home__routes-inner {
        grid-template-columns: 1fr;
    }

    .mm-home__route {
        min-height: 170px;
        border-right: 0;
        border-bottom: 1px solid var(--mm-line);
    }

    .mm-home__route:last-child {
        border-bottom: 0;
    }

    .mm-home__editorial,
    .mm-home__method,
    .mm-home__reference,
    .mm-home__final {
        padding-block: 4.5rem;
    }

    .mm-home__method {
        gap: 2.5rem;
    }

    .mm-category__hero-inner {
        grid-template-columns: 1fr;
        width: min(100% - 2rem, 1500px);
        padding-block: 2.5rem 3.5rem;
    }

    .mm-category__breadcrumbs {
        margin-bottom: 2.5rem;
    }

    .mm-category__hero h1 {
        max-width: 100%;
        font-size: clamp(2.8rem, 14vw, 4.7rem);
        line-height: .95;
    }

    .mm-category__visual {
        width: min(88vw, 350px);
        justify-self: center;
    }

    .mm-category__visual-name {
        display: none;
    }

    .mm-category__content,
    .mm-category__closing {
        width: min(100% - 2rem, 1380px);
    }

    .mm-category__routes,
    .mm-category__guides,
    .mm-category__editorial,
    .mm-category__subcategories {
        padding-block: 4.25rem;
    }

    .mm-category__section-heading,
    .mm-category__editorial {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .mm-category__section-heading {
        margin-bottom: 2.4rem;
    }

    .mm-category__section-heading h2,
    .mm-category__editorial .mm-category__section-heading h2 {
        margin-top: .75rem;
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }

    .mm-category__route {
        padding: 1.7rem 1.25rem;
    }

    .mm-category__route h3 {
        margin-top: 2.5rem;
    }

    .mm-category__article {
        grid-template-columns: 1fr;
    }

    .mm-category__article-media {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .mm-category__article-copy {
        padding: 2rem 1.4rem 2.4rem;
    }

    .mm-category__article-copy > strong {
        font-size: clamp(1.85rem, 9vw, 2.8rem);
    }

    .mm-category__fact,
    .mm-category__method {
        padding: 2rem 1.4rem;
    }

    .mm-pillar-intro {
        grid-template-columns: 1fr;
    }

    .mm-pillar-route {
        grid-template-columns: 2.25rem minmax(0, 1fr);
    }

    .mm-pillar-route__arrow {
        display: none;
    }

    .mm-pillar-closing {
        align-items: start;
        flex-direction: column;
        margin-inline: 1.25rem;
    }
}
