:root {
  --mh-text: #202d2b;
  --mh-soft: #5d6b66;
  --mh-canvas: #f7f5ed;
  --mh-panel: #e9eee2;
  --mh-rail: #cfd6c8;
  --mh-green: #355f4c;
  --mh-moss: #78936c;
  --mh-clay: #a96943;
  --mh-bluegray: #6d7f83;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--mh-canvas);
  color: var(--mh-text);
  font-family: "Yu Gothic", "Hiragino Sans", Meiryo, system-ui, sans-serif;
  line-height: 1.78;
}

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

a {
  color: inherit;
}

.mh-page-shell {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
}

.mh-cover {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 36px 0 70px;
}

.mh-cover-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(53, 95, 76, 0.16);
}

.mh-cover-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mh-cover-copy {
  padding: 34px 0;
}

.mh-rubric {
  margin: 0 0 12px;
  color: var(--mh-clay);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.mh-cover h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.mh-cover-copy p:not(.mh-rubric) {
  max-width: 35em;
  margin: 24px 0 30px;
  color: var(--mh-soft);
  font-size: 1.08rem;
}

.mh-quiet-button,
.mh-paper-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--mh-green);
  border-radius: 3px;
  background: var(--mh-green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mh-journal {
  display: grid;
  gap: 64px;
}

.mh-editorial {
  max-width: 820px;
  padding: 0 0 4px 72px;
  border-left: 8px solid var(--mh-moss);
}

.mh-editorial h2,
.mh-section-label h2,
.mh-planter-copy h2,
.mh-mistakes h2,
.mh-note-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.mh-editorial p:last-child,
.mh-planter-copy p:last-child,
.mh-note-cta__text p:last-child {
  margin: 16px 0 0;
  color: var(--mh-soft);
}

.mh-steps {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
  padding: 44px;
  background: #fffdf6;
  border: 1px solid var(--mh-rail);
}

.mh-section-label span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mh-bluegray);
  font-size: 2.2rem;
  font-weight: 700;
}

.mh-step-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: garden-step;
}

.mh-step-list li {
  position: relative;
  padding: 24px 24px 24px 76px;
  background: var(--mh-panel);
  border-radius: 4px;
}

.mh-step-list li::before {
  counter-increment: garden-step;
  content: counter(garden-step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mh-green);
  color: #fff;
  font-weight: 700;
}

.mh-step-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.mh-step-list p {
  margin: 0;
  color: var(--mh-soft);
}

.mh-planter-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
  gap: 30px;
  align-items: start;
}

.mh-planter-copy {
  position: sticky;
  top: 24px;
  padding: 28px 0;
}

.mh-crop-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mh-crop-tile {
  min-height: 220px;
  padding: 26px;
  background: #fffdf6;
  border-bottom: 5px solid var(--mh-clay);
  box-shadow: 0 14px 40px rgba(32, 45, 43, 0.08);
}

.mh-crop-tile h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.mh-crop-tile p {
  margin: 0;
  color: var(--mh-soft);
}

.mh-mistakes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: 36px;
  background: var(--mh-green);
  color: #fff;
}

.mh-chip {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
  font-size: 0.88rem;
}

.mh-mistakes ul {
  margin: 0;
  padding-left: 1.3em;
}

.mh-mistakes li + li {
  margin-top: 10px;
}

.mh-note-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 70px;
  border-top: 1px solid var(--mh-rail);
}

.mh-note-cta__text {
  max-width: 690px;
}

.mh-paper-link {
  flex: 0 0 auto;
  background: transparent;
  color: var(--mh-green);
}

.mh-footline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--mh-rail);
  color: var(--mh-soft);
}

.mh-footline p {
  margin: 0;
}

.mh-footline p:first-child {
  color: var(--mh-text);
  font-weight: 700;
}

.mh-footline a {
  color: var(--mh-green);
  font-weight: 700;
}

.mh-policy-leaf {
  width: min(860px, calc(100% - 44px));
  margin: 36px auto 84px;
  padding: 42px;
  background: #fffdf6;
  border-top: 6px solid var(--mh-green);
  box-shadow: 0 14px 40px rgba(32, 45, 43, 0.08);
}

.mh-policy-leaf h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
}

.mh-policy-leaf h2 {
  margin: 28px 0 8px;
  font-size: 1.34rem;
}

.mh-policy-leaf p {
  color: var(--mh-soft);
}

.mh-policy-leaf__home {
  display: inline-flex;
  margin-top: 22px;
  color: var(--mh-green);
  font-weight: 700;
}

@media (max-width: 940px) {
  .mh-cover,
  .mh-steps,
  .mh-planter-board,
  .mh-mistakes {
    grid-template-columns: 1fr;
  }

  .mh-cover {
    min-height: 0;
  }

  .mh-planter-copy {
    position: static;
    padding-bottom: 0;
  }

  .mh-editorial {
    padding-left: 28px;
  }
}

@media (max-width: 640px) {
  .mh-page-shell {
    width: min(100% - 28px, 1220px);
  }

  .mh-policy-leaf {
    width: min(100% - 28px, 860px);
    padding: 24px;
  }

  .mh-cover {
    gap: 24px;
    padding-top: 20px;
  }

  .mh-steps,
  .mh-mistakes {
    padding: 24px;
  }

  .mh-crop-deck {
    grid-template-columns: 1fr;
  }

  .mh-step-list li {
    padding: 22px 22px 22px 64px;
  }

  .mh-step-list li::before {
    left: 20px;
    top: 22px;
  }

  .mh-note-cta,
  .mh-footline {
    flex-direction: column;
    align-items: flex-start;
  }
}
