﻿/* MIDORIHOME clay layer - warm greenhouse mid-sections */
: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-parchment: var(--mh-sand);
  --mh-parchment-2: #e6d4bc;
  --mh-fog: var(--mh-sky);
  --mh-line: rgba(44, 36, 28, 0.14);
}
body {
  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%);
}
.mh-cta {
  background: linear-gradient(145deg, rgba(181, 106, 69, 0.94), rgba(62, 42, 31, 0.97)), var(--mh-soil);
  color: var(--mh-sand);
}
.mh-cta .mh-eyebrow { color: #c8dfa8; }
.mh-page-hero {
  background: linear-gradient(180deg, rgba(220, 232, 240, 0.85), transparent), var(--mh-sand);
}
.mh-hero__veil {
  background:
    linear-gradient(105deg, rgba(62, 42, 31, 0.78) 0%, rgba(44, 34, 28, 0.4) 48%, rgba(62, 42, 31, 0.55) 100%),
    linear-gradient(0deg, rgba(44, 34, 28, 0.5) 0%, transparent 42%);
}
.mh-eyebrow { color: var(--mh-clay); }
.mh-btn { background: var(--mh-clay); border-color: var(--mh-clay); color: #f7efe6; }
.mh-btn:hover { background: var(--mh-soil); border-color: var(--mh-soil); }
h1 em, h2 em { color: var(--mh-soil); }
/* Horizontal growth meters â€” soil â†’ sprout */
.mh-meters {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(220, 232, 240, 0.55), transparent 72%);
}

.mh-meters__soft {
  position: absolute;
  inset: 0;
  background-image: var(--mh-soft-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(0.7) brightness(0.92);
  opacity: 0.14;
  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(44, 36, 28, 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: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.5rem;
}

.mh-growth__soil,
.mh-growth__sprout {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.mh-growth__soil {
  color: var(--mh-soil);
}

.mh-growth__sprout {
  color: var(--mh-fern);
}

.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-soil);
  justify-self: end;
}

.mh-growth__track {
  position: relative;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(62, 42, 31, 0.18), rgba(107, 158, 74, 0.18));
  overflow: hidden;
}

.mh-growth__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mh-soil) 0%, var(--mh-clay) 45%, var(--mh-fern) 100%);
}

.mh-growth__hint {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(44, 36, 28, 0.55);
}

/* Menu â€” seed packet rows */
.mh-packets {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mh-packet {
  display: grid;
  grid-template-columns: minmax(9rem, 13.5rem) 1fr;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--mh-line);
  box-shadow: 0 1px 0 rgba(181, 106, 69, 0.08);
  transition: border-color 0.3s ease, transform 0.35s var(--mh-ease);
}

.mh-packet:hover {
  border-color: rgba(181, 106, 69, 0.4);
  transform: translateY(-2px);
}

.mh-packet__media {
  position: relative;
  border-right: 1px dashed rgba(44, 36, 28, 0.16);
}

.mh-packet__media .mh-image {
  height: 100%;
  min-height: 8.5rem;
  border-radius: 0;
  aspect-ratio: auto;
}

.mh-packet__stamp {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
  padding: 0.2rem 0.4rem;
  background: rgba(243, 230, 212, 0.92);
  border: 1px solid rgba(62, 42, 31, 0.2);
  font-family: var(--mh-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--mh-soil);
}

.mh-packet__body {
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mh-packet__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
}

.mh-packet__meta strong {
  font-family: var(--mh-font-display);
  color: var(--mh-clay);
}

.mh-packet h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.mh-packet p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(44, 36, 28, 0.75);
}

.mh-packet__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--mh-clay);
  letter-spacing: 0.06em;
}

.mh-offers__hint {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(44, 36, 28, 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,
.mh-filmstrip:focus-visible {
  outline: 2px solid rgba(181, 106, 69, 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(44, 36, 28, 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-soil), #2a1e18);
  color: var(--mh-sand);
}

.mh-story__copy .mh-eyebrow {
  color: var(--mh-fern);
}

.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: #d4e8b8;
  align-self: flex-start;
}

/* Pillars â€” numbered horizontal rail */
.mh-pillars__hint {
  margin: 0;
  font-family: var(--mh-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  color: var(--mh-clay);
}

.mh-pillars__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--mh-clay);
  border-bottom: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.28);
}

.mh-pillar-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 1.35rem;
  border-right: 1px solid var(--mh-line);
}

.mh-pillar-rail:last-child {
  border-right: 0;
}

.mh-pillar-rail__num {
  font-family: var(--mh-font-display);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--mh-fern);
}

.mh-pillar-rail__copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
}

.mh-pillar-rail__copy p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(44, 36, 28, 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 â€” signature vertical timeline */
.mh-seasons {
  background:
    linear-gradient(180deg, rgba(220, 232, 240, 0.55), transparent 18%, transparent 82%, rgba(243, 230, 212, 0.5));
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.mh-seasons__lead {
  max-width: 34rem;
  margin: 0.85rem auto 0;
  font-size: 0.95rem;
  color: rgba(44, 36, 28, 0.72);
}

.mh-timeline {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.75rem;
  align-items: start;
  max-width: 58rem;
  margin: 0 auto;
}

.mh-timeline__years {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.35rem;
}

.mh-timeline__year {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.45rem 0.35rem;
  border-left: 2px solid transparent;
  color: rgba(44, 36, 28, 0.45);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.mh-timeline__year b {
  font-family: var(--mh-font-jp);
  font-size: 1.15rem;
  font-weight: 600;
}

.mh-timeline__year small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.mh-timeline__year:hover,
.mh-timeline__year.is-active {
  color: var(--mh-soil);
  border-left-color: var(--mh-clay);
}

.mh-timeline__spine {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.mh-timeline__spine::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--mh-fern), var(--mh-clay), var(--mh-soil));
  opacity: 0.45;
}

.mh-timeline__node {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 1.15rem;
  scroll-margin-top: 6rem;
}

.mh-timeline__marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.mh-timeline__dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--mh-sand);
  border: 2px solid var(--mh-clay);
  box-shadow: 0 0 0 4px rgba(181, 106, 69, 0.18);
  z-index: 1;
}

.mh-timeline__node:nth-child(2) .mh-timeline__dot {
  border-color: var(--mh-fern);
}

.mh-timeline__node:nth-child(3) .mh-timeline__dot {
  border-color: #a85a35;
}

.mh-timeline__node:nth-child(4) .mh-timeline__dot {
  border-color: var(--mh-soil);
}

.mh-timeline__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.48);
  color: inherit;
  transition: border-color 0.3s ease, transform 0.35s var(--mh-ease);
}

.mh-timeline__card:hover {
  border-color: rgba(181, 106, 69, 0.4);
  transform: translateX(3px);
}

.mh-timeline__media {
  position: relative;
  min-height: 14rem;
}

.mh-timeline__media .mh-image {
  height: 100%;
  min-height: 14rem;
  border-radius: 0;
  aspect-ratio: auto;
}

.mh-timeline__kanji {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  font-family: var(--mh-font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(44, 36, 28, 0.45);
}

.mh-timeline__copy {
  padding: 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mh-timeline__months {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--mh-clay);
}

.mh-timeline__copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.mh-timeline__copy p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(44, 36, 28, 0.78);
}

.mh-timeline__meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(44, 36, 28, 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(44, 36, 28, 0.75);
}

/* Journal â€” horizontal filmstrip */
.mh-filmstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 22%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.85rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mh-filmstrip__frame {
  margin: 0;
  scroll-snap-align: start;
  border: 1px solid var(--mh-line);
  background: rgba(255, 255, 255, 0.4);
}

.mh-filmstrip__link {
  display: block;
  padding: 0 0 1.1rem;
}

.mh-filmstrip__link .mh-image {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  margin-bottom: 0.85rem;
}

.mh-filmstrip__meta {
  display: flex;
  justify-content: space-between;
  margin: 0 1rem 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(44, 36, 28, 0.55);
}

.mh-filmstrip__link h3 {
  margin: 0 1rem 0.4rem;
  font-size: 1.05rem;
}

.mh-filmstrip__link p {
  margin: 0 1rem;
  font-size: 0.85rem;
  color: rgba(44, 36, 28, 0.72);
}

/* FAQ â€” greenhouse clipboard */
.mh-faq {
  background: linear-gradient(180deg, rgba(220, 232, 240, 0.45), transparent);
}

.mh-clipboard {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.75rem 1.15rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(62, 42, 31, 0.06), transparent 28%),
    linear-gradient(160deg, #c9a882, #b8926c 40%, #a67d58);
  border: 1px solid rgba(62, 42, 31, 0.22);
  box-shadow: 0 18px 40px rgba(62, 42, 31, 0.16);
}

.mh-clipboard__clip {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  width: 4.5rem;
  height: 1.35rem;
  margin-left: -2.25rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #8a8f94, #5c6166);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 4px 8px rgba(44, 36, 28, 0.25);
}

.mh-clipboard__board {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.65rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(181, 106, 69, 0.08) 27px,
      rgba(181, 106, 69, 0.08) 28px
    ),
    var(--mh-sand);
  border: 1px solid rgba(62, 42, 31, 0.12);
}

.mh-clipboard__card {
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(62, 42, 31, 0.12);
  box-shadow: 0 1px 0 rgba(62, 42, 31, 0.05);
}

.mh-clipboard__card summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  cursor: pointer;
  font-family: var(--mh-font-jp);
  font-size: 0.98rem;
  list-style: none;
}

.mh-clipboard__card summary::-webkit-details-marker {
  display: none;
}

.mh-clipboard__no {
  font-family: var(--mh-font-display);
  font-size: 0.78rem;
  color: var(--mh-clay);
  letter-spacing: 0.08em;
}

.mh-clipboard__toggle {
  font-size: 1.05rem;
  color: var(--mh-fern);
  transition: transform 0.25s ease;
}

.mh-clipboard__card[open] .mh-clipboard__toggle {
  transform: rotate(45deg);
  color: var(--mh-clay);
}

.mh-clipboard__card p {
  margin: 0;
  padding: 0 1rem 1rem 2.7rem;
  font-size: 0.9rem;
  color: rgba(44, 36, 28, 0.78);
}


@media (max-width: 1100px) {
  .mh-pillars__rail { grid-template-columns: 1fr; }
  .mh-pillar-rail { border-right: 0; border-bottom: 1px solid var(--mh-line); }
  .mh-pillar-rail:last-child { border-bottom: 0; }
  .mh-timeline__card { grid-template-columns: 1fr; }
  .mh-timeline__media, .mh-timeline__media .mh-image { min-height: 11rem; }
}
@media (max-width: 900px) {
  .mh-timeline { grid-template-columns: 1fr; }
  .mh-timeline__years { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.35rem 0.85rem; }
  .mh-timeline__year { border-left: 0; border-bottom: 2px solid transparent; }
  .mh-timeline__year:hover, .mh-timeline__year.is-active { border-left-color: transparent; border-bottom-color: var(--mh-clay); }
  .mh-packet { grid-template-columns: minmax(7.5rem, 10rem) 1fr; }
  .mh-growth__head { grid-template-columns: auto 1fr auto; }
  .mh-growth__sprout { display: none; }
}
@media (max-width: 640px) {
  .mh-packet { grid-template-columns: 1fr; }
  .mh-packet__media { border-right: 0; border-bottom: 1px dashed rgba(44, 36, 28, 0.16); }
  .mh-packet__media .mh-image { min-height: 10rem; aspect-ratio: 16 / 9; }
  .mh-filmstrip, .mh-offer-track { grid-auto-columns: minmax(72%, 78%); }
  .mh-clipboard { padding: 1.5rem 0.65rem 1rem; }
  .mh-clipboard__card p { padding-left: 1rem; }
  .mh-flow__list { grid-template-columns: 1fr; }
}
