/* ============================================================
   Le Musée du Caractère — homepage foyer
   Intentionally scoped to .museum-home / .museum-page.
   ============================================================ */

:root {
  --mh-max: 1180px;
  --mh-gutter: clamp(20px, 4vw, 48px);
  --mh-section: clamp(80px, 10vw, 144px);
  --mh-shadow: 0 30px 80px -46px rgba(28, 26, 22, .5);
}

.museum-page {
  margin: 0;
  background: var(--paper2, #fbf8f1);
  color: var(--ink, #1c1a16);
}

.mh-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--ink, #1c1a16);
  color: var(--paper2, #fbf8f1);
  font: 500 13px/1.4 var(--sans, sans-serif);
  text-decoration: none;
}

.mh-skip-link:focus { transform: translateY(0); }

.museum-home,
.museum-home * { box-sizing: border-box; }

.museum-home {
  width: 100%;
  overflow: hidden;
  background: var(--paper2, #fbf8f1);
  color: var(--ink, #1c1a16);
  font-family: var(--serif, serif);
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

.museum-home :where(h1, h2, h3, h4, p, li, dt, dd, small, strong, summary, .mh-button, .mh-text-link) {
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
}
.museum-home :where(h1, h2, h3, h4) { text-wrap: balance; }
.museum-home :where(p, li, dd, small) { text-wrap: pretty; }
html:lang(ja) .museum-home :where(h1, h2, h3, h4, p, li, dt, dd, small, strong, summary, .mh-button, .mh-text-link) {
  word-break: auto-phrase;
}
html:lang(ko) .museum-home :where(h1, h2, h3, h4, p, li, dt, dd, small, strong, summary, .mh-button, .mh-text-link) {
  overflow-wrap: break-word;
  word-break: keep-all;
}
html:lang(en) .museum-home,
html:lang(ru) .museum-home { hyphens: none; }

.museum-home img { display: block; max-width: 100%; }
.museum-home a { color: inherit; text-decoration: none; }
.museum-home p,
.museum-home h1,
.museum-home h2,
.museum-home h3,
.museum-home dl,
.museum-home dd,
.museum-home ol,
.museum-home ul { margin: 0; padding: 0; }
.museum-home h1,
.museum-home h2,
.museum-home h3 { text-align: inherit; }

.museum-home :focus-visible {
  outline: 3px solid var(--gold-lt, #c9a227);
  outline-offset: 4px;
}

@supports not (word-break: auto-phrase) {
  html:lang(ja) .museum-home :where(h1, h2, h3, h4) {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
}

.mh-container {
  width: min(100%, var(--mh-max));
  margin: 0 auto;
  padding-inline: var(--mh-gutter);
}

.mh-section { padding-block: var(--mh-section); }

.mh-eyebrow {
  color: var(--gold-dk, #8a6a1f);
  font-family: var(--sans, sans-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.mh-section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.mh-section-head h2,
.mh-manifest h2,
.mh-final h2 {
  margin-top: 14px;
  font-family: var(--disp, serif);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .035em;
}
.mh-section-head > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink2, #5a554b);
  font-size: 17px;
  line-height: 1.9;
}
.mh-section-head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.mh-section-head--center > p:last-child { margin-inline: auto; }
.mh-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .65fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}
.mh-section-head--split > p:last-child { margin: 0 0 4px; }

.mh-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans, sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.mh-button:hover { transform: translateY(-2px); }
.mh-button--primary,
.mh-button--ink { background: var(--ink, #1c1a16); color: var(--paper2, #fbf8f1) !important; }
.mh-button--primary:hover,
.mh-button--ink:hover { background: var(--noir2, #2a251d); }
.mh-button--ghost { border-color: rgba(28, 26, 22, .38); background: rgba(251, 248, 241, .48); }
.mh-button--ghost:hover { border-color: var(--ink, #1c1a16); background: var(--paper2, #fbf8f1); }
.mh-button--gold { background: var(--gold, #b0882a); color: var(--noir, #15120e) !important; }
.mh-button--gold:hover { background: var(--gold-lt, #c9a227); }

.mh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink, #1c1a16);
  font-family: var(--sans, sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
}
.mh-text-link i { font-style: normal; transition: transform .2s ease; }
.mh-text-link:hover i { transform: translateX(5px); }
.mh-text-link--light { color: var(--noir-ink, #eae3d5); }

/* Hero */
.mh-hero {
  position: relative;
  min-height: clamp(640px, 76vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line2, #d6cdb9);
  background: var(--paper, #f3eee4);
}
.mh-hero__image,
.mh-hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.mh-hero__image { object-fit: cover; object-position: center; }
.mh-hero__veil {
  background:
    linear-gradient(90deg, rgba(243, 238, 228, .98) 0%, rgba(243, 238, 228, .94) 31%, rgba(243, 238, 228, .5) 54%, rgba(243, 238, 228, .08) 76%),
    linear-gradient(0deg, rgba(28, 26, 22, .08), transparent 42%);
}
.mh-hero__inner { position: relative; z-index: 1; }
.mh-hero__copy { width: min(100%, 680px); padding-block: 88px 110px; }
.mh-hero__brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px !important;
  font-family: var(--disp, serif);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .04em;
}
.mh-hero__brand span {
  color: var(--ink2, #5a554b);
  font-family: var(--serif, serif);
  font-size: .72em;
  font-style: italic;
  letter-spacing: .08em;
}
.mh-hero__operator { margin-bottom: clamp(26px, 4vw, 44px) !important; }
.mh-hero h1 {
  max-width: 660px;
  font-family: 'Shippori Mincho', var(--disp, serif);
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .045em;
}
.mh-hero__lead {
  max-width: 570px;
  margin-top: 26px !important;
  color: var(--ink2, #5a554b);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 2;
}
.mh-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.mh-hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px !important;
  color: var(--ink2, #5a554b);
  font-family: var(--sans, sans-serif);
  font-size: 12px;
}
.mh-hero__note span { color: var(--gold, #b0882a); font-size: 10px; }
.mh-hero__scroll {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 54px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink2, #5a554b);
  font: 500 9px/1 var(--sans, sans-serif);
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}
.mh-hero__scroll i { width: 1px; height: 48px; background: var(--gold, #b0882a); }

/* Visitor routes */
.mh-routes { background: var(--paper2, #fbf8f1); }
.mh-route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line2, #d6cdb9); }
.mh-route {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  background: var(--paper2, #fbf8f1);
  transition: background .25s ease;
}
.mh-route + .mh-route { border-left: 1px solid var(--line2, #d6cdb9); }
.mh-route:hover { background: var(--paper, #f3eee4); }
.mh-route__number {
  position: absolute;
  top: -32px;
  right: 18px;
  color: rgba(176, 136, 42, .1);
  font-family: var(--disp, serif);
  font-size: clamp(130px, 17vw, 210px);
  line-height: 1;
}
.mh-route .mh-eyebrow,
.mh-route h3,
.mh-route__body,
.mh-route .mh-text-link { position: relative; z-index: 1; }
.mh-route h3 {
  margin-top: 22px;
  font-family: 'Shippori Mincho', var(--disp, serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.4;
}
.mh-route__body { max-width: 440px; margin-top: 18px !important; color: var(--ink2, #5a554b); }
.mh-route .mh-text-link { margin-top: 38px; }

/* Product experience — flagship capabilities */
.mh-capabilities { background: #f7f2e9; border-top: 1px solid var(--line, #e3dbcb); scroll-margin-top: 24px; }
.mh-feature-list { display: grid; gap: clamp(48px, 8vw, 104px); }
.mh-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.mh-feature--reverse .mh-feature__copy { order: 2; }
.mh-feature--reverse .mh-feature__visual { order: 1; }
.mh-feature__meta { display: flex; align-items: center; gap: 17px; margin-bottom: 21px; }
.mh-feature__meta > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold, #b0882a);
  border-radius: 50%;
  color: var(--gold-dk, #8a6a1f);
  font: 500 10px/1 var(--mono, monospace);
}
.mh-feature__copy h3 {
  font-family: 'Shippori Mincho', var(--disp, serif);
  font-size: clamp(28px, 3.25vw, 43px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: .025em;
}
.mh-feature__copy > p {
  margin-top: 20px;
  color: var(--ink2, #5a554b);
  font-size: 15px;
  line-height: 2;
}
.mh-feature__copy ul { list-style: none; margin-top: 23px; padding-top: 17px; border-top: 1px solid var(--line2, #d6cdb9); }
.mh-feature__copy li { position: relative; padding: 5px 0 5px 22px; color: var(--ink2, #5a554b); font: 500 12px/1.75 var(--sans, sans-serif); letter-spacing: .03em; }
.mh-feature__copy li::before { content: '◆'; position: absolute; left: 0; top: 6px; color: var(--gold, #b0882a); font-size: 8px; }
.mh-feature__copy .mh-text-link { margin-top: 28px; }
.mh-feature__visual {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line2, #d6cdb9);
  background:
    linear-gradient(rgba(176,136,42,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,136,42,.07) 1px, transparent 1px),
    #ece5d7;
  background-size: 32px 32px;
  box-shadow: var(--mh-shadow);
}
.mh-feature--connection .mh-feature__visual,
.mh-feature--ai .mh-feature__visual { border-color: rgba(176,136,42,.4); background: #17140f; }
.mh-ui {
  width: min(100%, 520px);
  min-height: 365px;
  padding: 28px;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  background: #fffdf8;
  color: #27231d;
  box-shadow: 0 28px 62px -34px rgba(28,26,22,.55);
  font-family: var(--serif, serif);
}
.mh-ui__bar { display: flex; align-items: center; gap: 6px; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid #e3dbcb; }
.mh-ui__bar i { width: 7px; height: 7px; border-radius: 50%; background: #d7cfc0; }
.mh-ui__bar i:nth-child(3) { background: #b0882a; }
.mh-ui__bar span { margin-left: auto; color: #746d61; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .2em; }
.mh-ui__label { color: #8a6a1f; font: 500 9px/1.5 var(--sans, sans-serif); letter-spacing: .19em; }
.mh-layer { position: relative; display: grid; grid-template-columns: 76px 1fr 26px; gap: 12px; align-items: center; margin-top: 9px; padding: 12px 14px; border: 1px solid #e3dbcb; border-left: 3px solid; background: #fbf8f1; }
.mh-layer span { color: #777064; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .14em; }
.mh-layer b { font-size: 13px; font-weight: 500; }
.mh-layer i { width: 23px; height: 23px; border-radius: 50%; background: currentColor; opacity: .16; }
.mh-layer--accent { border-left-color: #c9a84c; color: #9a721a; }
.mh-layer--sub { border-left-color: #5a9a6a; color: #2f7041; }
.mh-layer--core { border-left-color: #4a7fa8; color: #255e89; }
.mh-layer-note { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; min-height: 58px; margin-top: 12px; padding: 12px 14px; border: 1px dashed #b9ae99; background: #f4efe5; }
.mh-layer-note b { display: block; color: #8a6a1f; font: 600 8px/1.4 var(--sans, sans-serif); letter-spacing: .1em; }
.mh-layer-note span { display: block; color: #686054; font: 400 10px/1.65 var(--sans, sans-serif); }
.mh-function-bars { display: grid; gap: 8px; margin-top: 21px; }
.mh-function-bars span,
.mh-gauges span { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 12px; }
.mh-function-bars b,
.mh-gauges b { color: #777064; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .08em; }
.mh-function-bars i,
.mh-gauges i { position: relative; height: 3px; overflow: hidden; background: #e3dbcb; }
.mh-function-bars i::after,
.mh-gauges i::after { content: ''; position: absolute; inset: 0 auto 0 0; width: var(--w); background: #b0882a; }

.mh-ui--connection { border-color: rgba(201,162,39,.46); background: #211d17; color: #eae3d5; box-shadow: 0 32px 70px -26px #000; }
.mh-ui--connection .mh-ui__label { color: #c9a227; }
.mh-pair { display: grid; grid-template-columns: 90px 1fr 90px; align-items: center; margin: 32px 0 28px; }
.mh-person { display: grid; justify-items: center; gap: 8px; }
.mh-person i { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(201,162,39,.6); border-radius: 50%; color: #c9a227; font: 500 20px/1 var(--disp, serif); }
.mh-person b { color: #938a79; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .15em; }
.mh-pair__line { position: relative; height: 1px; background: linear-gradient(90deg,#8a6a1f,#c9a227,#8a6a1f); }
.mh-pair__line::before { content: '◇'; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); padding: 0 8px; background: #211d17; color: #c9a227; }
.mh-pair__line b { position: absolute; top: 17px; left: 50%; transform: translateX(-50%); color: #aaa08e; font: 400 10px/1 var(--serif, serif); white-space: nowrap; }
.mh-gauges { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.mh-gauges b { color: #aaa08e; }
.mh-gauges i { background: #3b352b; }
.mh-message { margin-top: 25px; padding: 13px 15px; border-left: 2px solid #c9a227; background: rgba(255,255,255,.045); }
.mh-message span { color: #c9a227; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .15em; }
.mh-message p { margin-top: 6px; color: #d6cdbc; font-size: 12px; }

.mh-ui--manual { transform: rotate(-1deg); border-radius: 2px; box-shadow: 14px 16px 0 #d8cfbf, 0 32px 70px -35px rgba(28,26,22,.6); }
.mh-manual__top { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 10px; }
.mh-manual__top span { color: #8a6a1f; font: 500 9px/1 var(--sans, sans-serif); letter-spacing: .22em; }
.mh-manual__top b { color: #8a6a1f; font: 500 25px/1 var(--disp, serif); }
.mh-manual__progress { height: 3px; background: #e3dbcb; }
.mh-manual__progress i { display: block; width: 68%; height: 100%; background: #b0882a; }
.mh-manual__paper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin-top: 22px; border-top: 1px solid #e3dbcb; }
.mh-manual__paper span { position: relative; padding: 11px 2px 10px 17px; border-bottom: 1px solid #e3dbcb; color: #665f53; font-size: 11px; }
.mh-manual__paper span::before { content: '○'; position: absolute; left: 0; color: #b7ae9c; }
.mh-manual__paper .is-done::before { content: '●'; color: #b0882a; }
.mh-manual__share { margin-top: 22px; color: #8a6a1f; font: 500 8px/1.5 var(--sans, sans-serif); letter-spacing: .17em; text-align: center; }

.mh-ui--ai { border-color: rgba(201,162,39,.42); background: #211d17; color: #eae3d5; box-shadow: 0 32px 70px -26px #000; }
.mh-ui--ai .mh-ui__label { color: #c9a227; }
.mh-ai__bubble { width: 78%; margin: 22px 0 16px auto; padding: 11px 14px; border-radius: 10px 10px 2px 10px; background: #f3eee4; color: #332f28; font-size: 12px; }
.mh-ai__answer { padding: 14px 16px; border-left: 2px solid #c9a227; background: rgba(255,255,255,.055); }
.mh-ai__answer span,
.mh-ai__phrase span { color: #c9a227; font: 500 8px/1 var(--sans, sans-serif); letter-spacing: .16em; }
.mh-ai__answer p { margin-top: 8px; color: #d8cfbf; font-size: 12px; line-height: 1.75; }
.mh-ai__phrase { position: relative; margin-top: 12px; padding: 13px 60px 13px 15px; border: 1px solid #4a4235; background: #181510; }
.mh-ai__phrase p { margin-top: 6px; color: #eee7db; font-size: 12px; line-height: 1.65; }
.mh-ai__phrase b { position: absolute; top: 13px; right: 12px; color: #b7ae9c; font: 500 7px/1 var(--sans, sans-serif); letter-spacing: .12em; }
.mh-ai__foot { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 23px; color: #938a79; font: 500 7px/1 var(--sans, sans-serif); letter-spacing: .1em; }
.mh-ai__foot i { width: 4px; height: 4px; border-radius: 50%; background: #c9a227; }

/* Complete service map */
.mh-service-map { border-block: 1px solid var(--line, #e3dbcb); }
.mh-map-groups { border-top: 1px solid var(--line2, #d6cdb9); }
.mh-map-group { border-bottom: 1px solid var(--line2, #d6cdb9); }
.mh-map-group > summary {
  list-style: none;
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 30px 10px;
  cursor: pointer;
}
.mh-map-group > summary::-webkit-details-marker { display: none; }
.mh-map-group > summary > span { color: var(--gold-dk, #8a6a1f); font: 500 13px/1 var(--disp, serif); }
.mh-map-group > summary h3 { font-family: 'Shippori Mincho', var(--disp, serif); font-size: 25px; font-weight: 500; }
.mh-map-group > summary p { margin-top: 3px; color: var(--ink3, #938c7c); font: 400 12px/1.7 var(--sans, sans-serif); }
.mh-map-group > summary > i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  justify-self: center;
  color: var(--gold, #b0882a);
  font-style: normal;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.mh-map-group[open] > summary > i { transform: rotate(45deg); }
.mh-map-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0 0 34px 78px; }
.mh-map-item { position: relative; min-height: 220px; padding: 25px 30px 30px; border-top: 1px solid var(--line, #e3dbcb); border-left: 1px solid var(--line, #e3dbcb); background: rgba(255,253,248,.6); transition: background .2s ease, transform .2s ease; }
.mh-map-item:nth-child(3n) { border-right: 1px solid var(--line, #e3dbcb); }
.mh-map-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line, #e3dbcb); }
.mh-map-item:hover { z-index: 1; transform: translateY(-3px); background: #fffdf8; box-shadow: 0 18px 40px -32px rgba(28,26,22,.6); }
.mh-map-item > span { color: var(--gold-dk, #8a6a1f); font: 600 9px/1.4 var(--sans, sans-serif); letter-spacing: .12em; text-transform: uppercase; }
.mh-map-item h4 { margin-top: 12px; font-family: 'Shippori Mincho', var(--disp, serif); font-size: 18px; font-weight: 500; line-height: 1.5; }
.mh-map-item p { margin-top: 10px; color: var(--ink2, #5a554b); font-size: 12px; line-height: 1.85; }
.mh-map-item > i { position: absolute; right: 22px; bottom: 18px; color: var(--gold, #b0882a); font-style: normal; }
.mh-privacy-note { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; margin-top: 38px; padding: 22px 26px; border: 1px solid var(--line2, #d6cdb9); border-left: 3px solid var(--gold, #b0882a); background: #fbf8f1; }
.mh-privacy-note > span { color: var(--gold, #b0882a); font-size: 13px; }
.mh-privacy-note p { color: var(--ink2, #5a554b); font: 400 12px/1.9 var(--sans, sans-serif); }

/* Plans and complete pricing */
.mh-plans { background: #181510; color: var(--noir-ink, #eae3d5); }
.mh-plans .mh-section-head h2 { color: var(--noir-ink, #eae3d5); }
.mh-plans .mh-section-head > p:last-child { color: var(--noir-ink2, #b7ae9c); }
.mh-plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(176,136,42,.36); }
.mh-plan { min-height: 380px; display: flex; flex-direction: column; padding: 34px 28px; border-right: 1px solid rgba(176,136,42,.27); background: rgba(255,255,255,.025); }
.mh-plan:last-child { border-right: 0; }
.mh-plan h3 { margin-top: 14px; color: var(--noir-ink, #eae3d5); font-family: 'Shippori Mincho', var(--disp, serif); font-size: 22px; font-weight: 500; line-height: 1.5; }
.mh-plan__price { margin-top: 30px; color: var(--gold-lt, #c9a227); font: 500 clamp(30px, 3.2vw, 42px)/1 var(--disp, serif); white-space: nowrap; }
.mh-plan__price small { margin-left: 5px; color: var(--noir-ink2, #b7ae9c); font: 400 12px/1 var(--sans, sans-serif); }
.mh-plan__body { margin-top: 21px; color: var(--noir-ink2, #b7ae9c); font-size: 13px; line-height: 1.85; }
.mh-plan .mh-text-link { margin-top: auto; padding-top: 28px; color: var(--noir-ink, #eae3d5); }
.mh-catalog { margin-top: 30px; border: 1px solid rgba(176,136,42,.38); background: rgba(255,255,255,.025); }
.mh-catalog > summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; cursor: pointer; color: var(--noir-ink, #eae3d5); font: 500 13px/1.6 var(--sans, sans-serif); letter-spacing: .05em; }
.mh-catalog > summary::-webkit-details-marker { display: none; }
.mh-catalog > summary i { color: var(--gold-lt, #c9a227); font-style: normal; font-size: 23px; transition: transform .2s ease; }
.mh-catalog[open] > summary i { transform: rotate(45deg); }
.mh-catalog__body { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding: 0 24px 26px; border-top: 1px solid rgba(176,136,42,.2); }
.mh-catalog__body > div { padding: 26px 22px; border-right: 1px solid rgba(176,136,42,.2); }
.mh-catalog__body > div:last-of-type { border-right: 0; }
.mh-catalog__body h3 { color: var(--gold-lt, #c9a227); font-family: 'Shippori Mincho', var(--disp, serif); font-size: 17px; font-weight: 500; }
.mh-catalog__body ul { list-style: none; margin-top: 14px; }
.mh-catalog__body li { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.07); color: var(--noir-ink2, #b7ae9c); font-size: 11px; line-height: 1.6; }
.mh-catalog__body li b { color: var(--noir-ink, #eae3d5); font-family: var(--sans, sans-serif); font-weight: 500; white-space: nowrap; }
.mh-catalog__body > p { grid-column: 1 / -1; margin: 0 22px; padding-top: 19px; border-top: 1px solid rgba(176,136,42,.2); color: var(--noir-ink2, #b7ae9c); font: 400 11px/1.8 var(--sans, sans-serif); }
.mh-catalog__body > p a { margin-left: 6px; color: var(--gold-lt, #c9a227); }

/* Manifest */
.mh-manifest { border-block: 1px solid var(--line, #e3dbcb); }
.mh-manifest__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}
.mh-manifest h2 { margin-bottom: 28px; }
.mh-manifest__copy > p:not(.mh-eyebrow) { max-width: 680px; color: var(--ink2, #5a554b); line-height: 2.05; }
.mh-manifest__copy .mh-text-link { margin-top: 32px; }
.mh-stats { border-top: 1px solid var(--line2, #d6cdb9); }
.mh-stats > div { display: grid; grid-template-columns: 120px 1fr; align-items: baseline; padding: 22px 6px; border-bottom: 1px solid var(--line2, #d6cdb9); }
.mh-stats dt { color: var(--gold-dk, #8a6a1f); font: 500 clamp(38px, 5vw, 62px)/1 var(--disp, serif); }
.mh-stats dd { color: var(--ink2, #5a554b); font-family: var(--sans, sans-serif); font-size: 12px; letter-spacing: .08em; }

/* Journey */
.mh-journey { position: relative; background: var(--noir, #15120e); color: var(--noir-ink, #eae3d5); }
.mh-journey::before { content: ''; position: absolute; inset: 0; opacity: .08; background: radial-gradient(circle at 15% 20%, var(--gold-lt, #c9a227), transparent 32%), radial-gradient(circle at 85% 70%, var(--q-gamma, #1b284f), transparent 35%); pointer-events: none; }
.mh-journey .mh-container { position: relative; }
.mh-section-head--light h2 { color: var(--noir-ink, #eae3d5); }
.mh-section-head--light > p:last-child { color: var(--noir-ink2, #b7ae9c); }
.mh-journey__list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(176, 136, 42, .4); }
.mh-journey__list li { position: relative; min-height: 330px; padding: 44px clamp(24px, 3vw, 42px); border-right: 1px solid rgba(176, 136, 42, .28); }
.mh-journey__list li:last-child { border-right: 0; }
.mh-journey__num { color: var(--gold-lt, #c9a227); font: 500 12px/1 var(--mono, monospace); letter-spacing: .14em; }
.mh-journey__list h3 { margin-top: 44px; font-family: 'Shippori Mincho', var(--disp, serif); font-size: 24px; font-weight: 500; }
.mh-journey__list p { margin-top: 16px; color: var(--noir-ink2, #b7ae9c); font-size: 15px; line-height: 1.9; }
.mh-journey__list .mh-text-link { position: absolute; left: clamp(24px, 3vw, 42px); bottom: 44px; }

/* Reading room */
.mh-reading { background: var(--paper2, #fbf8f1); }
.mh-reading__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.mh-reading-card { background: #fff; border: 1px solid var(--line, #e3dbcb); box-shadow: 0 18px 60px -50px rgba(28, 26, 22, .5); transition: transform .25s ease, box-shadow .25s ease; }
.mh-reading-card:hover { transform: translateY(-6px); box-shadow: var(--mh-shadow); }
.mh-reading-card__image { aspect-ratio: 16/10; overflow: hidden; background: var(--panel, #ece5d6); }
.mh-reading-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mh-reading-card:hover img { transform: scale(1.035); }
.mh-reading-card__copy { padding: 28px 28px 30px; }
.mh-reading-card h3 { margin-top: 12px; font-family: 'Shippori Mincho', var(--disp, serif); font-size: 22px; font-weight: 500; line-height: 1.5; }
.mh-reading-card__copy > p:not(.mh-eyebrow) { min-height: 82px; margin-top: 13px; color: var(--ink2, #5a554b); font-size: 14px; line-height: 1.8; }
.mh-reading-card .mh-text-link { margin-top: 24px; }

/* Guided services */
.mh-services { border-block: 1px solid var(--line, #e3dbcb); }
.mh-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.mh-service { position: relative; min-height: 500px; overflow: hidden; border: 1px solid var(--line2, #d6cdb9); background: var(--paper2, #fbf8f1); }
.mh-service__image { height: 220px; overflow: hidden; }
.mh-service__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.mh-service:hover .mh-service__image img { transform: scale(1.035); }
.mh-service__copy { padding: clamp(30px, 4vw, 48px); }
.mh-service h3 { margin-top: 14px; font-family: var(--disp, serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; letter-spacing: .04em; }
.mh-service__copy > p:not(.mh-eyebrow) { margin-top: 16px; color: var(--ink2, #5a554b); font-size: 15px; }
.mh-service .mh-text-link { margin-top: 30px; }
.mh-service--business { border-color: rgba(176, 136, 42, .45); background: var(--noir, #15120e); color: var(--noir-ink, #eae3d5); }
.mh-service--business h3 { color: var(--noir-ink, #eae3d5); }
.mh-service--business .mh-eyebrow { color: var(--gold-lt, #c9a227); }
.mh-service--business .mh-service__copy > p:not(.mh-eyebrow) { color: var(--noir-ink2, #b7ae9c); }
.mh-service--business .mh-text-link { color: var(--noir-ink, #eae3d5); }

/* News */
.mh-news-section { background: var(--paper2, #fbf8f1); }
.mh-news { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 64px; margin-top: clamp(72px, 9vw, 120px); }
.mh-news-section .mh-news { margin-top: 0; }
.mh-news h2 { margin-top: 10px; font-family: var(--disp, serif); font-size: 32px; font-weight: 500; }
.mh-news ul { list-style: none; border-top: 1px solid var(--line2, #d6cdb9); }
.mh-news li { border-bottom: 1px solid var(--line2, #d6cdb9); }
.mh-news li a { display: grid; grid-template-columns: 110px minmax(0, 1fr) 20px; gap: 24px; align-items: center; padding: 22px 4px; }
.mh-news time { color: var(--ink3, #938c7c); font: 400 11px/1.5 var(--mono, monospace); }
.mh-news li span { font-size: 14px; }
.mh-news li i { color: var(--gold, #b0882a); font-style: normal; transition: transform .2s ease; }
.mh-news li a:hover i { transform: translateX(4px); }

/* Final invitation */
.mh-final { position: relative; padding-block: clamp(100px, 13vw, 180px); overflow: hidden; background: var(--noir2, #2a251d); color: var(--noir-ink, #eae3d5); text-align: center; }
.mh-final::before,
.mh-final::after { content: ''; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(176, 136, 42, .22); border-radius: 50%; }
.mh-final::before { left: -200px; top: -190px; }
.mh-final::after { right: -190px; bottom: -220px; }
.mh-final__inner { position: relative; z-index: 1; max-width: 860px; }
.mh-final h2 { margin-top: 16px; color: var(--noir-ink, #eae3d5); }
.mh-final__inner > p:not(.mh-eyebrow) { max-width: 600px; margin: 20px auto 36px; color: var(--noir-ink2, #b7ae9c); }

@media (max-width: 980px) {
  .mh-section-head--split,
  .mh-manifest__grid { grid-template-columns: 1fr; gap: 42px; }
  .mh-section-head--split > p:last-child { margin-top: 0; }
  .mh-feature { grid-template-columns: 1fr; gap: 36px; }
  .mh-feature--reverse .mh-feature__copy,
  .mh-feature--reverse .mh-feature__visual { order: initial; }
  .mh-feature__copy { max-width: 720px; }
  .mh-feature__visual { min-height: 440px; }
  .mh-map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-map-item:nth-child(3n) { border-right: 0; }
  .mh-map-item:nth-child(2n) { border-right: 1px solid var(--line, #e3dbcb); }
  .mh-map-item:nth-last-child(-n+3) { border-bottom: 0; }
  .mh-map-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line, #e3dbcb); }
  .mh-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-plan { border-bottom: 1px solid rgba(176,136,42,.27); }
  .mh-plan:nth-child(2n) { border-right: 0; }
  .mh-plan:nth-last-child(-n+2) { border-bottom: 0; }
  .mh-catalog__body { grid-template-columns: 1fr; }
  .mh-catalog__body > div { border-right: 0; border-bottom: 1px solid rgba(176,136,42,.2); }
  .mh-catalog__body > div:last-of-type { border-bottom: 0; }
  .mh-reading__grid { gap: 16px; }
  .mh-reading-card__copy { padding: 24px 22px 26px; }
  .mh-news { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  :root { --mh-section: 82px; }
  .museum-home { font-size: 16px; }
  .mh-section-head h2,
  .mh-manifest h2,
  .mh-final h2 { font-size: clamp(29px, 8.5vw, 40px); }
  .mh-section-head--split { display: block; }
  .mh-section-head--split > p:last-child { margin-top: 18px; }

  .mh-hero { min-height: 700px; align-items: flex-end; }
  .mh-hero__image { object-position: 62% center; }
  .mh-hero__veil {
    background:
      linear-gradient(0deg, rgba(243, 238, 228, .99) 0%, rgba(243, 238, 228, .95) 48%, rgba(243, 238, 228, .3) 82%),
      linear-gradient(90deg, rgba(243, 238, 228, .45), transparent 80%);
  }
  .mh-hero__copy { padding-block: 180px 68px; }
  .mh-hero__brand { display: block; font-size: 24px; }
  .mh-hero__brand span { margin-left: 8px; }
  .mh-hero__operator { margin-bottom: 24px !important; }
  .mh-hero h1 { font-size: clamp(34px, 10vw, 46px); line-height: 1.5; }
  .mh-hero__lead { margin-top: 18px !important; line-height: 1.9; }
  .mh-actions { display: grid; margin-top: 28px; }
  .mh-button { width: 100%; }
  .mh-hero__scroll { display: none; }

  .mh-route-grid { grid-template-columns: 1fr; }
  .mh-route { min-height: 340px; padding: 38px 30px; }
  .mh-route + .mh-route { border-left: 0; border-top: 1px solid var(--line2, #d6cdb9); }
  .mh-route__number { font-size: 150px; }
  .mh-route h3 { font-size: 32px; }

  .mh-feature-list { gap: 72px; }
  .mh-feature__copy h3 { font-size: clamp(27px, 8vw, 36px); }
  .mh-feature__visual { min-height: 0; padding: 18px; margin-inline: calc(var(--mh-gutter) * -.35); }
  .mh-ui { min-height: 0; padding: 20px; }
  .mh-layer { grid-template-columns: 65px 1fr 20px; padding: 11px 10px; }
  .mh-layer b { font-size: 11px; }
  .mh-layer-note { grid-template-columns: 1fr; gap: 4px; min-height: 0; }
  .mh-pair { grid-template-columns: 72px 1fr 72px; }
  .mh-person i { width: 48px; height: 48px; }
  .mh-gauges { grid-template-columns: 1fr; }
  .mh-manual__paper { grid-template-columns: 1fr; }
  .mh-ai__bubble { width: 88%; }

  .mh-map-group > summary { grid-template-columns: 36px 1fr 24px; gap: 12px; padding: 25px 2px; }
  .mh-map-group > summary h3 { font-size: 21px; }
  .mh-map-group > summary p { font-size: 11px; }
  .mh-map-grid { grid-template-columns: 1fr; padding: 0 0 28px 0; }
  .mh-map-item { min-height: 0; padding: 24px 25px 42px; border-right: 1px solid var(--line, #e3dbcb) !important; }
  .mh-map-item:nth-last-child(-n+2) { border-bottom: 0; }
  .mh-map-item:last-child { border-bottom: 1px solid var(--line, #e3dbcb); }
  .mh-privacy-note { padding: 19px 18px; }

  .mh-plan-grid { grid-template-columns: 1fr; }
  .mh-plan { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(176,136,42,.27) !important; }
  .mh-plan:last-child { border-bottom: 0 !important; }
  .mh-plan .mh-text-link { margin-top: 28px; padding-top: 0; }
  .mh-catalog__body { padding-inline: 12px; }
  .mh-catalog__body > div { padding-inline: 10px; }
  .mh-catalog__body > p { margin-inline: 10px; }

  .mh-manifest__grid { display: block; }
  .mh-stats { margin-top: 54px; }
  .mh-stats > div { grid-template-columns: 100px 1fr; }

  .mh-journey__list { grid-template-columns: 1fr; }
  .mh-journey__list li { min-height: auto; padding: 36px 6px; border-right: 0; border-bottom: 1px solid rgba(176, 136, 42, .28); }
  .mh-journey__list li:last-child { border-bottom: 0; }
  .mh-journey__list h3 { margin-top: 24px; }
  .mh-journey__list .mh-text-link { position: static; margin-top: 28px; }

  .mh-reading__grid,
  .mh-service-grid { grid-template-columns: 1fr; }
  .mh-reading-card__copy > p:not(.mh-eyebrow) { min-height: 0; }
  .mh-service { min-height: 0; }
  .mh-service__image { height: 180px; }
  .mh-service__copy { padding: 30px 26px 34px; }

  .mh-news li a { grid-template-columns: 1fr 20px; gap: 8px 16px; }
  .mh-news time { grid-column: 1; }
  .mh-news li span { grid-column: 1; }
  .mh-news li i { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .museum-home *,
  .museum-home *::before,
  .museum-home *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
