﻿/* MIDORIHOME - warm clay greenhouse - mh- */

:root {
  --mh-clay: #b56a45;
  --mh-soil: #3e2a1f;
  --mh-fern: #6b9e4a;
  --mh-sky: #dce8f0;
  --mh-sand: #f3e6d4;
  --mh-ink: #2c241c;
  --mh-aqua: var(--mh-fern);
  --mh-leaf: var(--mh-clay);
  --mh-leaf-deep: var(--mh-soil);
  --mh-mist: var(--mh-sky);
  --mh-mist-2: var(--mh-sand);
  --mh-umber: var(--mh-soil);
  --mh-moss: var(--mh-clay);
  --mh-moss-deep: var(--mh-soil);
  --mh-moss-soft: var(--mh-fern);
  --mh-charcoal: var(--mh-soil);
  --mh-wood: #8a6248;
  --mh-wood-light: #c4a078;
  --mh-ceramic: #c98968;
  --mh-ceramic-2: #8aaa6e;
  --mh-ceramic-3: #c4a890;
  --mh-parchment: var(--mh-sand);
  --mh-parchment-2: #e6d4bc;
  --mh-fog: var(--mh-sky);
  --mh-line: rgba(44, 36, 28, 0.14);
  --mh-shelf-w: 7.25rem;
  --mh-font-display: "Fraunces", "Shippori Mincho", serif;
  --mh-font-jp: "Shippori Mincho", "Zen Kaku Gothic New", serif;
  --mh-font-ui: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --mh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mh-radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mh-ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(220, 232, 240, 0.95), transparent 58%),
    radial-gradient(ellipse 55% 40% at 100% 8%, rgba(181, 106, 69, 0.12), transparent 52%),
    linear-gradient(180deg, var(--mh-sky) 0%, var(--mh-sand) 42%, #e8d5bc 100%);
  font-family: var(--mh-font-ui);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--mh-font-jp);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 em,
h2 em {
  font-family: var(--mh-font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--mh-leaf-deep);
}

.mh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--mh-charcoal);
  color: #fff;
}

.mh-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* -- Planter shelf nav -- */
.mh-shelf {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--mh-shelf-w);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 0.55rem 1.25rem;
  background: linear-gradient(180deg, #5a4034 0%, var(--mh-umber) 52%, var(--mh-charcoal) 100%);
  box-shadow: 4px 0 24px rgba(44, 34, 28, 0.28);
}

.mh-shelf__wood {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.03) 14px 15px
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 42%, rgba(255, 255, 255, 0.04));
  opacity: 0.88;
}

.mh-shelf__brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  text-align: center;
  color: var(--mh-parchment);
}

.mh-shelf__mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50% 50% 45% 45%;
  background:
    radial-gradient(circle at 40% 35%, var(--mh-aqua), var(--mh-leaf) 55%, var(--mh-leaf-deep));
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.22);
  margin-bottom: 0.25rem;
}

.mh-shelf__brand strong {
  font-family: var(--mh-font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mh-shelf__brand em {
  font-family: var(--mh-font-jp);
  font-style: normal;
  font-size: 0.68rem;
  opacity: 0.78;
}

.mh-shelf__pots {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
}

.mh-pot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.35rem 0.2rem 0.45rem;
  border-radius: 4px;
  color: var(--mh-parchment);
  transition: transform 0.35s var(--mh-ease), background 0.25s ease;
}

.mh-pot:hover,
.mh-pot:focus-visible,
.mh-pot[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  outline: none;
}

.mh-pot[aria-current="page"] .mh-pot__body {
  box-shadow: 0 0 0 1.5px rgba(126, 184, 176, 0.55);
}

.mh-pot__plant {
  position: relative;
  width: 2rem;
  height: 1.35rem;
  margin-bottom: -0.15rem;
}

.mh-pot__stem {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--mh-aqua), var(--mh-leaf-deep));
  border-radius: 1px;
}

.mh-pot__leaf {
  position: absolute;
  bottom: 0.35rem;
  width: 0.85rem;
  height: 0.45rem;
  border-radius: 50% 50% 50% 10%;
  opacity: 0.92;
}

.mh-pot__leaf--l {
  left: 0.15rem;
  transform: rotate(-38deg);
  background: var(--mh-aqua);
}

.mh-pot__leaf--r {
  right: 0.15rem;
  transform: rotate(38deg);
  background: var(--mh-leaf);
}

.mh-pot__ceramic {
  position: relative;
  width: 2.55rem;
  height: 2.1rem;
}

.mh-pot__rim {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.55rem;
  height: 0.42rem;
  margin-left: -1.275rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #d9987c, var(--mh-clay));
  z-index: 2;
}

.mh-pot__body {
  position: absolute;
  top: 0.28rem;
  left: 50%;
  width: 2.2rem;
  height: 1.7rem;
  margin-left: -1.1rem;
  border-radius: 4px 4px 42% 42%;
  background: linear-gradient(160deg, #d9987c 0%, var(--mh-clay) 45%, #a05e45 100%);
  box-shadow: inset -3px -4px 8px rgba(0, 0, 0, 0.12);
}

.mh-pot--t2 .mh-pot__body {
  background: linear-gradient(160deg, #a8d0ca 0%, var(--mh-aqua) 50%, #5a9088 100%);
}

.mh-pot--t2 .mh-pot__rim {
  background: linear-gradient(180deg, #b8ddd7, var(--mh-aqua));
}

.mh-pot--t3 .mh-pot__body {
  background: linear-gradient(160deg, #d4a898 0%, var(--mh-clay) 40%, var(--mh-aqua) 100%);
}

.mh-pot--t3 .mh-pot__rim {
  background: linear-gradient(180deg, #c8ddd9, var(--mh-aqua));
}

.mh-pot__glaze {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  width: 0.55rem;
  height: 0.85rem;
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(-12deg);
  pointer-events: none;
}

.mh-pot__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.28rem;
  gap: 0.05rem;
}

.mh-pot__label small {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.mh-pot__label b {
  font-family: var(--mh-font-jp);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mh-shelf__place {
  position: relative;
  z-index: 1;
  margin: 0.75rem 0 0;
  writing-mode: vertical-rl;
  font-family: var(--mh-font-jp);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(232, 242, 240, 0.38);
}

.mh-menu-btn {
  display: none;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(232, 242, 240, 0.28);
  border-radius: var(--mh-radius);
  background: transparent;
  color: var(--mh-parchment);
  cursor: pointer;
}

.mh-menu-btn span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.mh-menu-btn i {
  display: block;
  width: 0.85rem;
  height: 1.5px;
  background: currentColor;
  margin: 0.18rem 0;
}

/* Mobile sheet */
.mh-sheet-shade {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(44, 34, 28, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mh-sheet-shade.is-open {
  opacity: 1;
  visibility: visible;
}

.mh-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  max-height: min(78vh, 520px);
  padding: 1.25rem 1.35rem 1.75rem;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #f4faf8, var(--mh-mist));
  box-shadow: 0 -12px 40px rgba(74, 52, 40, 0.18);
  transform: translateY(110%);
  transition: transform 0.4s var(--mh-ease);
}

.mh-sheet.is-open {
  transform: translateY(0);
}

.mh-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--mh-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--mh-leaf-deep);
}

.mh-sheet__head button {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mh-ink);
}

.mh-sheet nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mh-sheet nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid var(--mh-line);
  font-family: var(--mh-font-jp);
  font-size: 1.05rem;
}

.mh-sheet nav a small {
  width: 1.5rem;
  font-size: 0.7rem;
  opacity: 0.45;
  letter-spacing: 0.1em;
}

.mh-sheet nav a span {
  margin-left: auto;
  opacity: 0.4;
}

.mh-sheet nav a[aria-current="page"] {
  color: var(--mh-leaf);
}

.mh-sheet__meta {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(58, 46, 38, 0.65);
}

/* Layout offset for shelf */
.mh-page main,
.mh-page .mh-footer {
  margin-left: var(--mh-shelf-w);
}

/* -- Typography helpers -- */
.mh-eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--mh-font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--mh-leaf);
}

.mh-lead {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.02rem;
  color: rgba(58, 46, 38, 0.82);
}

.mh-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.mh-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.mh-heading--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  text-align: left;
}

.mh-heading--row .mh-heading,
.mh-heading--row > div {
  text-align: left;
}

.mh-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--mh-leaf-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  transition: color 0.25s ease, gap 0.25s ease;
}

.mh-arrow:hover {
  color: var(--mh-leaf);
  gap: 0.55rem;
}

.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid var(--mh-leaf);
  border-radius: var(--mh-radius);
  background: var(--mh-leaf);
  color: var(--mh-mist);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--mh-ease);
}

.mh-btn:hover {
  background: var(--mh-leaf-deep);
  border-color: var(--mh-leaf-deep);
  transform: translateY(-1px);
}

.mh-btn--ghost {
  background: transparent;
  color: var(--mh-mist);
  border-color: rgba(232, 242, 240, 0.55);
}

.mh-btn--ghost:hover {
  background: rgba(126, 184, 176, 0.18);
  border-color: var(--mh-aqua);
  color: #fff;
}

.mh-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.mh-image {
  overflow: hidden;
  border-radius: var(--mh-radius);
  background: var(--mh-parchment-2);
}

.mh-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--mh-ease);
}

.mh-reveal:hover .mh-image img,
.mh-menu-feature:hover .mh-image img,
.mh-menu-chip:hover .mh-image img {
  transform: scale(1.04);
}

.mh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--mh-ease), transform 0.7s var(--mh-ease);
}

.mh-reveal--left {
  transform: translateX(-24px);
}

.mh-reveal--right {
  transform: translateX(24px);
}

.mh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -- Hero: greenhouse panes -- */
.mh-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--mh-mist);
}

.mh-hero__panes {
  position: absolute;
  inset: 0;
}

.mh-hero__pane {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--mh-ease), transform 1.4s var(--mh-ease);
}

.mh-hero__pane.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.mh-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(35, 79, 58, 0.72) 0%, rgba(44, 34, 28, 0.38) 48%, rgba(35, 50, 44, 0.52) 100%),
    linear-gradient(0deg, rgba(44, 34, 28, 0.5) 0%, transparent 42%);
  pointer-events: none;
}

.mh-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(33.33% - 0.5px), rgba(126, 184, 176, 0.12) calc(33.33% - 0.5px), rgba(126, 184, 176, 0.12) calc(33.33% + 0.5px), transparent calc(33.33% + 0.5px)),
    linear-gradient(90deg, transparent 0, transparent calc(66.66% - 0.5px), rgba(126, 184, 176, 0.12) calc(66.66% - 0.5px), rgba(126, 184, 176, 0.12) calc(66.66% + 0.5px), transparent calc(66.66% + 0.5px));
  mix-blend-mode: soft-light;
}

.mh-hero__stage {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 2rem;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.mh-hero__copy h1 {
  margin: 0;
  font-family: var(--mh-font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #f7faf9;
}

.mh-hero__brand-jp {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--mh-font-jp);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.28em;
  opacity: 0.9;
}

.mh-hero__tag {
  margin: 0 0 1.6rem;
  max-width: 18rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

.mh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mh-hero__film {
  justify-self: end;
  width: min(100%, 22rem);
  padding: 1rem;
  border: 1px solid rgba(232, 242, 240, 0.22);
  background: rgba(44, 34, 28, 0.38);
  backdrop-filter: blur(8px);
}

.mh-hero__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.mh-hero__thumb {
  position: relative;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.mh-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.mh-hero__thumb span {
  position: absolute;
  left: 0.3rem;
  bottom: 0.2rem;
  font-family: var(--mh-font-display);
  font-size: 0.65rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.mh-hero__thumb.is-active {
  border-color: rgba(126, 184, 176, 0.75);
}

.mh-hero__thumb.is-active img,
.mh-hero__thumb:hover img {
  opacity: 1;
}

.mh-hero__caption {
  margin: 0 0 0.65rem;
  font-family: var(--mh-font-jp);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.mh-hero__nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mh-font-display);
  font-size: 0.9rem;
}

.mh-hero__nav small {
  opacity: 0.55;
  margin-right: auto;
}

.mh-hero__nav button {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(232, 242, 240, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.25s ease;
}

.mh-hero__nav button:hover {
  background: rgba(126, 184, 176, 0.18);
}

/* Intro */
.mh-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mh-intro__grid figure {
  margin: 0;
}

.mh-intro__grid .mh-image {
  aspect-ratio: 4 / 3;
}

.mh-intro__grid figcaption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(58, 46, 38, 0.65);
}

.mh-intro__grid figure:nth-child(2) {
  margin-top: 2rem;
}

/* Growth meters */
.mh-meters {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(126, 184, 176, 0.18), transparent 72%);
}

.mh-meters__soft {
  position: absolute;
  inset: 0;
  background-image: var(--mh-soft-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(0.65) brightness(0.92);
  opacity: 0.12;
  pointer-events: none;
}

.mh-meters__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.mh-meters .mh-heading {
  text-align: left;
  margin-bottom: 0;
}

.mh-meters__note {
  margin: 0.85rem 0 0;
  color: rgba(58, 46, 38, 0.7);
  font-size: 0.92rem;
}

.mh-growth {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0;
}

.mh-growth__row {
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--mh-line);
}

.mh-growth__row:last-child {
  border-bottom: 0;
}

.mh-growth__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.mh-growth__label {
  font-family: var(--mh-font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.mh-growth__pct {
  font-family: var(--mh-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--mh-leaf-deep);
}

.mh-growth__track {
  position: relative;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(74, 52, 40, 0.08);
  overflow: hidden;
}

.mh-growth__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mh-leaf) 0%, var(--mh-aqua) 55%, var(--mh-clay) 100%);
  transition: width 1.2s var(--mh-ease);
}

.mh-growth__hint {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(58, 46, 38, 0.55);
}

/* Menu asymmetric */
.mh-menu__asymmetric {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mh-menu-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.38);
  color: inherit;
  transition: border-color 0.3s ease, transform 0.35s var(--mh-ease);
}

.mh-menu-feature:hover {
  border-color: rgba(126, 184, 176, 0.45);
  transform: translateY(-2px);
}

.mh-menu-feature--lead {
  grid-column: 1 / -1;
}

.mh-menu-feature--lead .mh-image {
  aspect-ratio: 16 / 10;
}

.mh-menu-feature .mh-image {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.mh-menu-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.35rem;
}

.mh-menu-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
}

.mh-menu-card__meta strong {
  font-family: var(--mh-font-display);
  color: var(--mh-clay);
}

.mh-menu-feature h3,
.mh-menu-chip h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.mh-menu-feature p,
.mh-menu-chip p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(58, 46, 38, 0.75);
}

.mh-menu-card__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--mh-leaf);
  letter-spacing: 0.06em;
}

.mh-menu__scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(14rem, 22%);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mh-menu__scroll:focus-visible {
  outline: 2px solid rgba(126, 184, 176, 0.45);
  outline-offset: 4px;
}

.mh-menu-chip {
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.35);
  color: inherit;
  transition: border-color 0.3s ease, transform 0.35s var(--mh-ease);
}

.mh-menu-chip:hover {
  border-color: rgba(126, 184, 176, 0.4);
  transform: translateY(-2px);
}

.mh-menu-chip .mh-image {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.mh-menu-chip__body {
  padding: 0.95rem 1rem 1.1rem;
}

/* Offers */
.mh-offers__hint {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(58, 46, 38, 0.45);
}

.mh-offer-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(12.5rem, 18%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mh-offer-track:focus-visible {
  outline: 2px solid rgba(126, 184, 176, 0.4);
  outline-offset: 4px;
}

.mh-product {
  margin: 0;
  scroll-snap-align: start;
}

.mh-product .mh-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 0.75rem;
}

.mh-product p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(58, 46, 38, 0.55);
}

.mh-product h3 {
  margin: 0;
  font-size: 1rem;
}

/* Story */
.mh-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.mh-story__image {
  overflow: hidden;
}

.mh-story__image img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.mh-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--mh-umber), var(--mh-charcoal));
  color: var(--mh-mist);
}

.mh-story__copy .mh-eyebrow {
  color: var(--mh-aqua);
}

.mh-story__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.mh-story__copy p {
  margin: 0 0 1.5rem;
  opacity: 0.88;
}

.mh-story__copy .mh-arrow {
  color: var(--mh-aqua);
  align-self: flex-start;
}

/* Pillars */
.mh-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mh-pillar {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.32);
}

.mh-pillar__num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--mh-font-display);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--mh-aqua);
}

.mh-pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.mh-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(58, 46, 38, 0.78);
}

/* Mosaic */
.mh-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.mh-mosaic figure {
  margin: 0;
}

.mh-mosaic .mh-image {
  aspect-ratio: 5 / 4;
}

.mh-mosaic figure:nth-child(2),
.mh-mosaic figure:nth-child(5) {
  transform: translateY(1.25rem);
}

.mh-mosaic figcaption {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.mh-mosaic figcaption span {
  font-family: var(--mh-font-display);
  color: var(--mh-clay);
}

/* Seasons vertical rail */
.mh-seasons {
  background:
    linear-gradient(180deg, rgba(126, 184, 176, 0.14), transparent 18%, transparent 82%, rgba(213, 230, 226, 0.45));
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.mh-seasons__year {
  margin: 0;
  font-family: var(--mh-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--mh-leaf);
}

.mh-season-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.mh-season-rail::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--mh-aqua), var(--mh-leaf), var(--mh-clay), var(--mh-umber));
  opacity: 0.55;
}

.mh-season-node {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.15rem;
  scroll-margin-top: 6rem;
}

.mh-season-node__axis {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.mh-season-node__dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--mh-mist);
  border: 2px solid var(--mh-aqua);
  box-shadow: 0 0 0 4px rgba(126, 184, 176, 0.18);
  z-index: 1;
}

.mh-season-node:nth-child(2) .mh-season-node__dot {
  border-color: var(--mh-leaf);
}

.mh-season-node:nth-child(3) .mh-season-node__dot {
  border-color: var(--mh-clay);
}

.mh-season-node:nth-child(4) .mh-season-node__dot {
  border-color: var(--mh-umber);
}

.mh-season-node__card {
  display: grid;
  grid-template-columns: minmax(11rem, 0.95fr) 1.05fr;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.42);
  color: inherit;
  transition: border-color 0.3s ease, transform 0.35s var(--mh-ease);
}

.mh-season-node__card:hover {
  border-color: rgba(126, 184, 176, 0.45);
  transform: translateX(3px);
}

.mh-season-node__media {
  min-height: 14rem;
  background-image: var(--mh-season-img);
  background-size: cover;
  background-position: center;
}

.mh-season-node__copy {
  padding: 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mh-season-node__copy b {
  font-family: var(--mh-font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--mh-leaf-deep);
  margin-bottom: 0.25rem;
}

.mh-season-node__copy strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--mh-font-jp);
  font-size: 1.25rem;
  font-weight: 600;
}

.mh-season-node__copy p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(58, 46, 38, 0.78);
}

.mh-season-node__copy span {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(58, 46, 38, 0.55);
}

/* Flow */
.mh-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mh-flow__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.35);
}

.mh-flow__num {
  font-family: var(--mh-font-display);
  font-size: 1.4rem;
  color: var(--mh-clay);
}

.mh-flow__item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.mh-flow__item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(58, 46, 38, 0.75);
}

/* Voices pullquote */
.mh-pullquote {
  display: grid;
  grid-template-columns: minmax(10rem, 0.85fr) 1.15fr;
  gap: 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

.mh-pullquote__portrait .mh-image {
  height: 100%;
  min-height: 18rem;
  border-radius: 0;
}

.mh-pullquote__band {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--mh-umber), var(--mh-charcoal));
  color: var(--mh-mist);
}

.mh-pullquote__mark {
  margin: 0 0 0.5rem;
  font-family: var(--mh-font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--mh-aqua);
  opacity: 0.75;
}

.mh-pullquote__text {
  margin: 0 0 1.25rem;
  font-family: var(--mh-font-jp);
  font-size: 1.05rem;
  line-height: 1.85;
}

.mh-pullquote__band footer {
  font-size: 0.82rem;
  opacity: 0.82;
}

.mh-pullquote__band cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mh-pullquote__band span {
  opacity: 0.72;
}

.mh-voice-aside {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mh-voice-aside li {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.32);
}

.mh-voice-aside p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: rgba(58, 46, 38, 0.82);
}

.mh-voice-aside span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(58, 46, 38, 0.55);
}

/* Team strip */
.mh-team-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--mh-line);
  border-bottom: 1px solid var(--mh-line);
}

.mh-team-strip__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 1.35rem;
  border-right: 1px solid var(--mh-line);
}

.mh-team-strip__item:last-child {
  border-right: 0;
}

.mh-team-strip__num {
  font-family: var(--mh-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--mh-aqua);
  padding-top: 0.35rem;
}

.mh-team-strip__face {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(126, 184, 176, 0.35);
}

.mh-team-strip__face .mh-image {
  border-radius: 50%;
  aspect-ratio: 1;
}

.mh-team-strip__meta h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.mh-team-strip__meta p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(58, 46, 38, 0.75);
}

.mh-team-card__role {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--mh-leaf);
}

/* Journal magazine list */
.mh-mag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mh-line);
}

.mh-mag-list__row {
  border-bottom: 1px solid var(--mh-line);
}

.mh-mag-list__link {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0.25rem;
  transition: background 0.25s ease;
}

.mh-mag-list__link:hover {
  background: rgba(126, 184, 176, 0.08);
}

.mh-mag-list__num {
  font-family: var(--mh-font-display);
  font-size: 1.1rem;
  color: var(--mh-clay);
}

.mh-mag-list__body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.mh-mag-list__body p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(58, 46, 38, 0.72);
}

.mh-mag-list__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(58, 46, 38, 0.55);
  white-space: nowrap;
}

/* FAQ */
.mh-faq {
  background: linear-gradient(180deg, rgba(126, 184, 176, 0.12), transparent);
}

.mh-faq__lead {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(58, 46, 38, 0.65);
}

.mh-faq__board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mh-faq-chip {
  margin: 0;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--mh-line);
}

.mh-faq-chip summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-family: var(--mh-font-jp);
  font-size: 0.95rem;
  list-style: none;
}

.mh-faq-chip summary::-webkit-details-marker {
  display: none;
}

.mh-faq-chip summary span {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--mh-aqua);
  transition: transform 0.25s ease, color 0.25s ease;
}

.mh-faq-chip[open] summary span {
  transform: rotate(45deg);
  color: var(--mh-clay);
}

.mh-faq-chip p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  font-size: 0.88rem;
  color: rgba(58, 46, 38, 0.78);
  line-height: 1.75;
}

/* CTA */
.mh-cta {
  margin: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(47, 107, 79, 0.94), rgba(74, 52, 40, 0.97)),
    var(--mh-leaf-deep);
  color: var(--mh-mist);
}

.mh-cta .mh-eyebrow {
  color: var(--mh-aqua);
}

.mh-cta h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.mh-cta > p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  opacity: 0.85;
}

.mh-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.mh-cta__meta {
  margin: 1.5rem 0 0 !important;
  font-size: 0.78rem !important;
  opacity: 0.55 !important;
}

/* Page hero (inner) */
.mh-page-hero {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(126, 184, 176, 0.22), transparent),
    var(--mh-mist);
}

.mh-page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.mh-page-hero > p:last-child {
  margin: 0;
  max-width: 28rem;
  color: rgba(58, 46, 38, 0.75);
}

/* About / collection / contact */
.mh-about-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  align-items: center;
}

.mh-about-intro .mh-story__image {
  min-height: 24rem;
}

.mh-about-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.mh-about-intro p {
  margin: 0 0 1rem;
  color: rgba(58, 46, 38, 0.8);
}

.mh-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mh-process__grid article {
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.32);
}

.mh-process__grid b {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--mh-font-display);
  color: var(--mh-leaf);
}

.mh-process__grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.mh-process__grid p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(58, 46, 38, 0.75);
}

.mh-collection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 28rem;
}

.mh-collection__image {
  overflow: hidden;
}

.mh-collection__image img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.mh-collection__image.mh-order {
  order: 2;
}

.mh-collection__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.35);
}

.mh-collection__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.mh-collection__copy > p {
  margin: 0 0 1rem;
  color: rgba(58, 46, 38, 0.8);
}

.mh-collection__copy ul {
  margin: 0 0 1.35rem;
  padding-left: 1.1rem;
}

.mh-collection__copy li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.mh-article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.mh-article-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--mh-line);
  padding-bottom: 1.15rem;
}

.mh-article-card .mh-image {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  margin-bottom: 0.85rem;
}

.mh-article-card > p {
  display: flex;
  justify-content: space-between;
  margin: 0 1rem 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(58, 46, 38, 0.55);
}

.mh-article-card h2 {
  margin: 0 1rem 0.45rem;
  font-size: 1.05rem;
}

.mh-article-card > div {
  margin: 0 1rem 0.85rem;
  font-size: 0.86rem;
  color: rgba(58, 46, 38, 0.72);
}

.mh-article-card .mh-arrow {
  margin-left: 1rem;
}

.mh-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3.5rem, 6vw, 5rem);
}

.mh-contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mh-contact label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.mh-contact label.is-invalid input,
.mh-contact label.is-invalid select,
.mh-contact label.is-invalid textarea {
  border-color: #8b3a3a;
}

.mh-contact input,
.mh-contact select,
.mh-contact textarea {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  background: rgba(255, 255, 255, 0.65);
  color: var(--mh-ink);
}

.mh-contact input:focus,
.mh-contact select:focus,
.mh-contact textarea:focus {
  outline: 2px solid rgba(126, 184, 176, 0.45);
  border-color: var(--mh-leaf);
}

.mh-contact button[type="submit"] {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: var(--mh-radius);
  background: var(--mh-leaf);
  color: var(--mh-mist);
  cursor: pointer;
  letter-spacing: 0.06em;
}

.mh-contact button[type="submit"]:hover {
  background: var(--mh-leaf-deep);
}

.mh-error {
  font-style: normal;
  font-size: 0.78rem;
  color: #8b3a3a;
}

.mh-form-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(139, 58, 58, 0.08);
  border-left: 3px solid #8b3a3a;
  color: #6e2e2e;
}

.mh-thanks {
  padding: 1.5rem;
  background: rgba(126, 184, 176, 0.15);
  border: 1px solid rgba(47, 107, 79, 0.25);
}

.mh-thanks h2 {
  margin: 0 0 0.65rem;
}

.mh-contact aside {
  padding: 1.5rem;
  background: linear-gradient(160deg, var(--mh-umber), var(--mh-charcoal));
  color: var(--mh-mist);
}

.mh-contact aside .mh-eyebrow {
  color: var(--mh-aqua);
}

.mh-contact aside h2 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
}

.mh-aside-image {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.mh-aside-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mh-contact dl {
  margin: 0;
}

.mh-contact dt {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--mh-aqua);
}

.mh-contact dd {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.mh-contact dd a {
  border-bottom: 1px solid rgba(232, 242, 240, 0.35);
}

/* 404 */
.mh-not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.mh-not-found__pot {
  width: 3.5rem;
  height: 3.2rem;
  margin-bottom: 1.25rem;
  border-radius: 4px 4px 45% 45%;
  background: linear-gradient(160deg, #d9987c, var(--mh-clay));
  position: relative;
}

.mh-not-found__pot::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 1.4rem;
  margin-left: -1px;
  background: var(--mh-leaf);
}

.mh-not-found h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.mh-not-found > p:last-of-type {
  margin: 0 0 1.5rem;
  color: rgba(58, 46, 38, 0.7);
}

/* Footer */
.mh-footer {
  position: relative;
  padding: 3rem clamp(1.25rem, 4vw, 3.5rem) 1.5rem;
  background: var(--mh-charcoal);
  color: var(--mh-mist);
  overflow: hidden;
}

.mh-footer__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.4) 2px,
    rgba(255, 255, 255, 0.4) 3px
  );
  pointer-events: none;
}

.mh-footer__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(232, 242, 240, 0.12);
}

.mh-footer__top .mh-eyebrow {
  color: var(--mh-aqua);
}

.mh-footer__top strong {
  display: block;
  font-family: var(--mh-font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.mh-footer__top span {
  font-family: var(--mh-font-jp);
  letter-spacing: 0.2em;
  opacity: 0.75;
}

.mh-footer__top > p {
  margin: 0;
  max-width: 16rem;
  text-align: right;
  opacity: 0.75;
  font-size: 0.92rem;
}

.mh-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mh-footer__grid span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--mh-aqua);
}

.mh-footer__grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.82;
}

.mh-footer__grid a {
  border-bottom: 1px solid rgba(232, 242, 240, 0.25);
}

.mh-footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 242, 240, 0.1);
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  .mh-hero__stage {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .mh-hero__film {
    justify-self: stretch;
    width: 100%;
  }

  .mh-meters__layout {
    grid-template-columns: 1fr;
  }

  .mh-menu__asymmetric {
    grid-template-columns: 1fr;
  }

  .mh-menu-feature {
    grid-template-columns: 1fr;
  }

  .mh-team-strip {
    grid-template-columns: 1fr;
  }

  .mh-team-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--mh-line);
  }

  .mh-team-strip__item:last-child {
    border-bottom: 0;
  }

  .mh-flow__list,
  .mh-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --mh-shelf-w: 0px;
  }

  .mh-page main,
  .mh-page .mh-footer {
    margin-left: 0;
  }

  .mh-shelf {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0.65rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(44, 34, 28, 0.22);
  }

  .mh-shelf__pots,
  .mh-shelf__place {
    display: none;
  }

  .mh-shelf__brand {
    flex-direction: row;
    gap: 0.55rem;
    margin: 0;
    margin-right: auto;
  }

  .mh-shelf__brand strong {
    font-size: 0.78rem;
  }

  .mh-shelf__brand em {
    font-size: 0.75rem;
  }

  .mh-menu-btn {
    display: inline-flex;
  }

  .mh-hero {
    padding-top: 3.5rem;
  }

  .mh-hero,
  .mh-hero__stage {
    min-height: calc(100vh - 3.5rem);
    min-height: calc(100dvh - 3.5rem);
  }

  .mh-intro__grid,
  .mh-process__grid,
  .mh-pillars__grid,
  .mh-footer__grid {
    grid-template-columns: 1fr;
  }

  .mh-intro__grid figure:nth-child(2) {
    margin-top: 0;
  }

  .mh-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-mosaic figure:nth-child(2),
  .mh-mosaic figure:nth-child(5) {
    transform: none;
  }

  .mh-story,
  .mh-collection,
  .mh-about-intro,
  .mh-contact,
  .mh-pullquote {
    grid-template-columns: 1fr;
  }

  .mh-collection__image.mh-order {
    order: 0;
  }

  .mh-season-node__card {
    grid-template-columns: 1fr;
  }

  .mh-season-node__media {
    min-height: 11rem;
  }

  .mh-heading--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .mh-mag-list__link {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }

  .mh-mag-list__side {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    white-space: normal;
  }

  .mh-faq__board {
    grid-template-columns: 1fr;
  }

  .mh-voice-aside {
    grid-template-columns: 1fr;
  }

  .mh-footer__top {
    flex-direction: column;
  }

  .mh-footer__top > p {
    text-align: left;
  }

  .mh-page-hero {
    padding-top: 5.5rem;
  }
}

@media (max-width: 640px) {
  .mh-flow__list,
  .mh-article-grid,
  .mh-mosaic {
    grid-template-columns: 1fr;
  }

  .mh-offer-track,
  .mh-menu__scroll {
    grid-auto-columns: minmax(72%, 78%);
  }

  .mh-season-rail::before {
    left: 0.85rem;
  }

  .mh-season-node {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
  }

  .mh-hero__cta,
  .mh-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mh-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mh-reveal,
  .mh-hero__pane,
  .mh-image img,
  .mh-season-node__card,
  .mh-growth__fill {
    transition: none !important;
  }

  .mh-reveal {
    opacity: 1;
    transform: none;
  }
}
