/* ==========================================================================
   MakHome — studio.css  (v2 design system: ink / paper / glass)
   Loaded after main.css. New components use the `mhs-` prefix.
   Context: sections declare `mhs-dark` or `mhs-light`; components read --fg/--line/--glass.
   ========================================================================== */

/* ---------- context tokens ---------- */
:root, .mhs-light {
  --fg: #0a0a0b; --fg-2: rgba(10,10,11,.66); --fg-3: rgba(10,10,11,.42);
  --line: rgba(10,10,11,.12); --line-strong: rgba(10,10,11,.3);
  --glass: rgba(255,255,255,.58); --glass-line: rgba(255,255,255,.9); --glass-hi: rgba(255,255,255,.5);
  --surface: var(--paper);
}
.mhs-dark {
  --fg: #fff; --fg-2: rgba(255,255,255,.68); --fg-3: rgba(255,255,255,.44);
  --line: rgba(255,255,255,.12); --line-strong: rgba(255,255,255,.35);
  --glass: rgba(14,14,16,.46); --glass-line: rgba(255,255,255,.16); --glass-hi: rgba(255,255,255,.06);
  --surface: var(--ink);
  background: var(--ink); color: var(--fg-2);
}
.mhs-light { background: var(--paper); color: var(--fg-2); }
.mhs-dark ::selection, .mhs-light ::selection { background: var(--red); color: #fff; }

html { font-size: 16px; }
body { background: var(--paper); color: var(--mh-black); font-family: var(--mh-font-sans); font-size: 1.0625rem; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- type ---------- */
.mhs-display { font-weight: 700; letter-spacing: -.035em; line-height: .94; color: var(--fg); font-size: clamp(2.6rem, 6.6vw, 6.4rem); text-wrap: balance; }
.mhs-h-xl { font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--fg); font-size: clamp(2rem, 4.3vw, 4rem); text-wrap: balance; }
.mhs-h-lg { font-weight: 700; letter-spacing: -.025em; line-height: 1.05; color: var(--fg); font-size: clamp(1.6rem, 2.8vw, 2.5rem); text-wrap: balance; }
.mhs-h-md { font-weight: 500; letter-spacing: -.02em; line-height: 1.15; color: var(--fg); font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
.mhs-thin { font-weight: 400; color: var(--fg-2); }
.mhs-display .mhs-thin, .mhs-h-xl .mhs-thin { display: block; }
.mhs-lead { font-weight: 400; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.45; color: var(--fg); letter-spacing: -.01em; text-wrap: pretty; }
.mhs-eyebrow { display: inline-flex; align-items: center; gap: .7em; font-weight: 500; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); }
.mhs-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--red); flex: none; }
.mhs-prose { max-width: 60ch; text-wrap: pretty; color: var(--fg-2); }
.mhs-prose p + p { margin-top: 1.1em; }
.mhs-muted { color: var(--fg-3); }

/* ---------- layout ---------- */
.mhs-wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.mhs-section { padding-top: var(--mh-section-y); padding-bottom: var(--mh-section-y); }
.mhs-section--tight { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }
.mhs-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 4vw, 64px); }
.mhs-col-4 { grid-column: span 4; } .mhs-col-5 { grid-column: span 5; } .mhs-col-6 { grid-column: span 6; }
.mhs-col-7 { grid-column: span 7; } .mhs-col-8 { grid-column: span 8; }
.mhs-stack > * + * { margin-top: var(--stack, 1.25rem); }
.mhs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 56px); }
.mhs-head .mhs-h-xl { margin-top: .4em; }
.mhs-head__aside { display: flex; align-items: center; gap: 22px; padding-bottom: .3em; }
.mhs-arrows { display: flex; gap: 6px; }
.mhs-arrows button { width: 44px; height: 44px; border-radius: 0; border: 1px solid var(--line-strong); background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--fg); display: grid; place-items: center; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s; }
.mhs-arrows button svg { width: 18px; height: 18px; }
.mhs-arrows button:hover { background: var(--fg); border-color: var(--fg); color: var(--surface); }
.mhs-arrows button:disabled { opacity: .3; cursor: default; }
.mhs-arrows.is-idle { display: none; }
.mhs-arrows button:disabled:hover { background: var(--glass); color: var(--fg); border-color: var(--line-strong); }
@media (max-width: 640px) { .mhs-arrows { display: none; } }
.mhs-rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
@media (max-width: 900px) { .mhs-col-4, .mhs-col-5, .mhs-col-6, .mhs-col-7, .mhs-col-8 { grid-column: 1 / -1; } }

/* ---------- buttons & links ---------- */
.mhs-btn { display: inline-flex; align-items: center; gap: .7em; font-weight: 500; font-size: .95rem; letter-spacing: .01em; color: var(--fg); padding: .95em 1.5em; border: 1px solid var(--line-strong); border-radius: 0; background: transparent; cursor: pointer; white-space: nowrap; transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.mhs-btn:hover { border-color: var(--fg); background: var(--fg); color: var(--surface); }
.mhs-btn--solid { background: var(--fg); border-color: var(--fg); color: var(--surface); }
.mhs-btn--solid:hover { background: transparent; color: var(--fg); }
.mhs-btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.mhs-btn--red:hover { background: #c22a2a; border-color: #c22a2a; color: #fff; }
.mhs-btn--glass { background: var(--glass); border-color: var(--glass-line); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.mhs-btn--sm { padding: .7em 1.1em; font-size: .88rem; }
.mhs-btn svg { width: 1em; height: 1em; flex: none; transition: transform .3s var(--ease); }
.mhs-btn:hover svg { transform: translateX(3px); }
.mhs-link { display: inline-flex; align-items: center; gap: .5em; font-weight: 500; color: var(--fg); border-bottom: 1px solid var(--line); padding-bottom: .15em; transition: border-color .3s; }
.mhs-link:hover { border-color: var(--red); }
.mhs-link svg { width: .9em; height: .9em; }
/* legacy buttons pick up the new radius/weight */
.mh-btn { border-radius: 0; font-weight: 500; }

/* ---------- glass plate (signature: the "spec label") ---------- */
.mhs-plate { display: block; position: relative; background: var(--glass); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border: 1px solid var(--glass-line); border-radius: 0; padding: 16px 18px 18px; color: var(--fg); box-shadow: 0 24px 60px -24px rgba(0,0,0,.55), inset 0 1px 0 var(--glass-hi); overflow: hidden; }
.mhs-plate--on-image { --fg: #fff; --fg-2: rgba(255,255,255,.72); --fg-3: rgba(255,255,255,.46); --glass: rgba(14,14,16,.46); --glass-line: rgba(255,255,255,.16); --glass-hi: rgba(255,255,255,.06); }
.mhs-plate__eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); }
.mhs-plate__eyebrow i { font-style: normal; color: var(--red); }
.mhs-plate__title { display: block; font-weight: 500; font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.2; margin-top: .55em; color: var(--fg); }
.mhs-plate__meta { display: block; font-size: .84rem; color: var(--fg-2); margin-top: .35em; }
.mhs-plate__meta b { font-weight: 500; color: var(--fg); }
.mhs-plate__facts { display: grid; grid-template-columns: auto 1fr; gap: .4em 1.2em; margin: .9em 0 0; padding-top: .9em; border-top: 1px solid var(--glass-line); font-size: .86rem; }
.mhs-plate__facts dt { color: var(--fg-3); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .68rem; padding-top: .2em; }
.mhs-plate__facts dd { margin: 0; color: var(--fg); }
.mhs-plate__swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.mhs-plate__swatches i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.mhs-plate__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.12); }
.mhs-plate__bar i { display: block; height: 100%; width: 0; background: var(--red); transition: width .7s var(--ease); }
a.mhs-plate:hover .mhs-plate__bar i, .mhs-tile:hover .mhs-plate__bar i { width: 100%; }
.mhs-plate__cta { display: flex; width: fit-content; align-items: center; gap: .4em; margin-top: .9em; font-weight: 500; font-size: .88rem; color: var(--fg); }
.mhs-plate__cta svg { width: .9em; height: .9em; transition: transform .3s var(--ease); }
a.mhs-plate:hover .mhs-plate__cta svg { transform: translateX(3px); }

/* ---------- header (sticky, in-flow; heroes pull up under it) ---------- */
.mhs-header { position: sticky; top: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; padding: 0 var(--gutter); color: #fff; background: var(--ink); border-bottom: 1px solid transparent; transition: background .4s var(--ease), border-color .4s var(--ease); }
body.mh-has-hero .mhs-header { background: transparent; border-bottom-color: transparent; }
body.mh-has-hero .mhs-header.mh-header--scrolled, .mhs-header.mh-header--scrolled { background: rgba(10,10,11,.6); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom-color: rgba(255,255,255,.1); }
body.admin-bar .mhs-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .mhs-header { top: 46px; } }
.mhs-header__in { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; }
.mhs-header__left { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); }
.mhs-header__right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.mhs-header__nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.mhs-header__nav-sep { width: 1px; align-self: stretch; margin: .35em 0; background: rgba(255,255,255,.22); }
body.single-fc_product .mhs-header__nav-sep { background: rgba(10,10,11,.18); }
.mhs-header__nav a { font-weight: 500; font-size: .95rem; letter-spacing: .01em; color: rgba(255,255,255,.76); padding: .4em 0; position: relative; white-space: nowrap; transition: color .3s; }
.mhs-header__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.mhs-header__nav a:hover, .mhs-header__nav a[aria-current="page"] { color: #fff; }
.mhs-header__nav a:hover::after, .mhs-header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.mhs-header__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; line-height: 0; }
.mhs-header__logo img, .mhs-header__logo .custom-logo { height: 38px; width: auto; max-width: none; filter: none; transition: transform .5s var(--ease); }
.mhs-header__logo-text { font-weight: 700; font-size: 1.9rem; letter-spacing: -.03em; color: #fff; }
.mhs-header__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 0; color: rgba(255,255,255,.82); position: relative; transition: background .3s, color .3s; }
.mhs-header__icon:hover { background: rgba(255,255,255,.1); color: #fff; }
.mhs-header__icon svg { width: 20px; height: 20px; }
.mhs-header__cart-count { position: absolute; top: 4px; right: 2px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 0; background: var(--red); color: #fff; font-size: .62rem; font-weight: 700; display: grid; place-items: center; }
.mhs-header__phone { display: inline-flex; align-items: center; gap: .55em; height: 40px; padding: 0 12px 0 10px; margin-left: 2px; border-radius: 0; font-weight: 500; font-size: .92rem; letter-spacing: .01em; color: rgba(255,255,255,.82); white-space: nowrap; transition: background .3s, color .3s; }
.mhs-header__phone:hover { background: rgba(255,255,255,.1); color: #fff; }
.mhs-header__phone svg { width: 19px; height: 19px; flex: none; stroke-width: 1.5; }
/* search: icon → expands to glass input */
.mhs-search { display: flex; align-items: center; height: 40px; border-radius: 0; border: 1px solid transparent; transition: border-color .3s, background .3s, width .4s var(--ease); width: 40px; overflow: hidden; }
.mhs-search:focus-within, .mhs-search.is-open { width: 260px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); backdrop-filter: blur(12px); }
.mhs-search__input { flex: 0 0 0; width: 0; min-width: 0; background: none; border: 0; color: #fff; font: inherit; font-size: .92rem; padding: 0; outline: 0; opacity: 0; transition: opacity .3s; }
.mhs-search:focus-within .mhs-search__input, .mhs-search.is-open .mhs-search__input { flex: 1 1 auto; padding-left: 16px; opacity: 1; }
.mhs-search__input::placeholder { color: rgba(255,255,255,.5); }
.mhs-search__btn { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: rgba(255,255,255,.82); border-radius: 0; }
.mhs-search__btn:hover { color: #fff; }
.mhs-search__btn svg { width: 19px; height: 19px; }
/* burger */
.mhs-burger { width: 44px; height: 44px; margin-left: -10px; position: relative; flex: none; }
.mhs-burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), opacity .25s, top .35s var(--ease); }
.mhs-burger span:nth-child(1) { top: 16px; } .mhs-burger span:nth-child(2) { top: 22px; } .mhs-burger span:nth-child(3) { top: 28px; }
.mhs-burger.mh-active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.mhs-burger.mh-active span:nth-child(2) { opacity: 0; }
.mhs-burger.mh-active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
@media (max-width: 1280px) { .mhs-header__nav { gap: 14px; } .mhs-header__nav a { font-size: .9rem; } .mhs-header__logo img, .mhs-header__logo .custom-logo { height: 34px; } }
@media (max-width: 1180px) { .mhs-header__phone { display: none; } }
@media (max-width: 1100px) { .mhs-header__nav { display: none; } }
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .mhs-header__nav, .mhs-search { display: none; }
  .mhs-header__logo img, .mhs-header__logo .custom-logo { height: 28px; }
}

/* ---------- off-canvas (glass drawer) ---------- */
.mhs-offcanvas-overlay { position: fixed; inset: 0; z-index: 1090; background: rgba(5,5,6,.5); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.mhs-offcanvas-overlay.mh-active { opacity: 1; pointer-events: auto; }
.mhs-offcanvas { position: fixed; top: 0; left: 0; bottom: 0; z-index: 1100; width: min(520px, 100vw); background: rgba(10,10,11,.78); backdrop-filter: blur(28px) saturate(150%); -webkit-backdrop-filter: blur(28px) saturate(150%); border-right: 1px solid rgba(255,255,255,.1); color: #fff; transform: translateX(-100%); transition: transform .55s var(--ease); display: flex; flex-direction: column; overflow-y: auto; --fg: #fff; --fg-2: rgba(255,255,255,.7); --fg-3: rgba(255,255,255,.45); --line: rgba(255,255,255,.12); }
.mhs-offcanvas.mh-active { transform: none; }
.mhs-offcanvas__head { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding: 0 var(--gutter); border-bottom: 1px solid var(--line); flex: none; }
.mhs-offcanvas__head .mhs-eyebrow { color: rgba(255,255,255,.55); }
.mhs-offcanvas__close { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 0; color: #fff; transition: background .3s; }
.mhs-offcanvas__close:hover { background: rgba(255,255,255,.1); }
.mhs-offcanvas__body { padding: clamp(24px, 4vh, 40px) var(--gutter) 40px; display: grid; gap: clamp(28px, 4vh, 44px); }
.mhs-offcanvas__primary a { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-weight: 700; font-size: clamp(1.7rem, 4.5vw, 2.4rem); letter-spacing: -.03em; line-height: 1.1; color: #fff; padding: .35em 0; border-bottom: 1px solid var(--line); transition: color .3s, padding-left .4s var(--ease); }
.mhs-offcanvas__primary a small { font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
.mhs-offcanvas__primary a:hover { color: #fff; padding-left: .3em; }
.mhs-offcanvas__primary a:hover small { color: var(--red); }
.mhs-offcanvas__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mhs-offcanvas__tiles .mhs-tile { aspect-ratio: 4 / 3; border-radius: 0; }
.mhs-offcanvas__tiles .mhs-tile .mhs-plate { left: 10px; bottom: 10px; padding: 9px 11px; }
.mhs-offcanvas__tiles .mhs-tile .mhs-plate__title { font-size: .92rem; margin-top: .2em; }
.mhs-offcanvas__secondary { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.mhs-offcanvas__secondary a { font-weight: 500; font-size: 1rem; color: var(--fg-2); transition: color .3s; }
.mhs-offcanvas__secondary a:hover { color: #fff; }
.mhs-offcanvas__foot { margin-top: auto; color: var(--fg-2); font-size: .95rem; line-height: 1.6; display: grid; gap: 4px; }
.mhs-offcanvas__foot b { display: block; font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; color: #fff; }
.mhs-offcanvas__foot b svg { width: .7em; height: .7em; margin-right: .35em; color: var(--red); vertical-align: -.02em; }
@media (min-width: 901px) { .mhs-offcanvas__secondary--mobile { display: none; } }

/* ---------- tiles / image grids (4px hairline gutters) ---------- */
.mhs-tile { position: relative; display: block; overflow: hidden; background: var(--slate); color: #fff; isolation: isolate; }
.mhs-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.mhs-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.6), rgba(5,5,6,0) 55%); pointer-events: none; }
.mhs-tile:hover img { transform: scale(1.035); }
.mhs-tile .mhs-plate { position: absolute; left: 14px; bottom: 14px; z-index: 2; max-width: calc(100% - 28px); padding: 12px 14px 14px; transition: transform .5s var(--ease); }
.mhs-tile:hover .mhs-plate { transform: translateY(-4px); }
.mhs-tile .mhs-plate__title { font-size: 1rem; margin-top: .35em; }
.mhs-tile .mhs-plate__title::after { content: "→"; display: inline-block; margin-left: .45em; opacity: 0; transform: translateX(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mhs-tile:hover .mhs-plate__title::after { opacity: 1; transform: none; }
.mhs-tile .mhs-plate__meta { font-size: .78rem; }
.mhs-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; padding: 0 4px; }
.mhs-strip .mhs-tile { aspect-ratio: 4 / 5; }
.mhs-strip .mhs-tile::after { opacity: .5; }
@media (max-width: 900px) { .mhs-strip { grid-template-columns: repeat(3, 1fr); } .mhs-strip .mhs-tile { aspect-ratio: 1; } }
.mhs-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 4px; padding: 0 4px; }
.mhs-gallery a { position: relative; display: block; overflow: hidden; background: var(--slate); aspect-ratio: 4 / 3; cursor: zoom-in; }
.mhs-gallery a.is-wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.mhs-gallery a.is-tall { grid-row: span 2; aspect-ratio: auto; }
.mhs-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mhs-gallery a:hover img { transform: scale(1.03); }
@media (max-width: 900px) { .mhs-gallery { grid-template-columns: repeat(2, 1fr); } .mhs-gallery a.is-wide { aspect-ratio: 4 / 3; grid-column: auto; } .mhs-gallery a.is-tall { grid-row: auto; aspect-ratio: 4 / 3; } }
@media (max-width: 560px) { .mhs-gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- horizontal scroller (edge-to-edge tall tiles) ---------- */
.mhs-scroller { display: flex; gap: 4px; overflow-x: auto; scroll-snap-type: x proximity; scroll-padding-left: var(--gutter); padding: 0 var(--gutter); scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.mhs-scroller::-webkit-scrollbar { display: none; }
.mhs-scroller > * { flex: none; scroll-snap-align: start; width: clamp(240px, 26vw, 400px); aspect-ratio: 4 / 5; }
.mhs-scroller > *:last-child { margin-right: var(--gutter); }
.mhs-scroller .mhs-tile img { transform: scale(1.02); }
.mhs-scroller .mhs-tile:hover img { transform: scale(1.06); }
.mhs-scrollbar { position: relative; max-width: 480px; margin: 22px auto 0; height: 2px; background: var(--line); cursor: pointer; }
@media (max-width: 640px) { .mhs-scrollbar { margin-left: var(--gutter); margin-right: var(--gutter); } }
.mhs-scrollbar i { display: block; height: 100%; width: 60px; background: var(--red); transition: margin-left .1s linear; }
.mhs-scrollbar.mh-scrollbar--dragging i { transition: none; }

/* ---------- reveal (page enter) ---------- */
.js body:not(.is-loaded) .mhs-hero__copy > * { opacity: 0; transform: translateY(24px); }
.mhs-hero__copy > * { transition: opacity 1s var(--ease), transform 1s var(--ease); }
.mhs-hero__copy > *:nth-child(2) { transition-delay: .12s; } .mhs-hero__copy > *:nth-child(3) { transition-delay: .24s; } .mhs-hero__copy > *:nth-child(4) { transition-delay: .36s; }

/* ---------- HERO ---------- */
.mhs-hero { position: relative; height: 100svh; min-height: 620px; max-height: 1200px; overflow: hidden; background: var(--coal); color: #fff; isolation: isolate; margin-top: calc(-1 * var(--nav-h)); }
.mhs-hero__media { position: absolute; inset: -3%; }
.mhs-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease); will-change: opacity, transform; }
.mhs-hero__media img.is-active { opacity: 1; animation: mhs-kb-out 9s linear forwards; }
.mhs-hero__media img.is-active.kb-in { animation-name: mhs-kb-in; }
.mhs-hero__media img.mh-paused { animation-play-state: paused; }
@keyframes mhs-kb-out { from { transform: scale(1.1) translate(1.5%, 1%); } to { transform: scale(1) translate(0, 0); } }
@keyframes mhs-kb-in { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.1) translate(-1.5%, -1%); } }
.mhs-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.86) 0%, rgba(5,5,6,.3) 45%, rgba(5,5,6,.05) 70%, rgba(5,5,6,.4) 100%); pointer-events: none; }
.mhs-hero__in { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 var(--gutter) clamp(36px, 6vh, 72px); }
.mhs-hero__copy { max-width: min(960px, 78vw); }
.mhs-hero__copy .mhs-eyebrow { color: rgba(255,255,255,.62); margin-bottom: 1.2em; }
.mhs-hero__copy .mhs-display { color: #fff; }
.mhs-hero__sub { margin-top: 1.3em; max-width: 48ch; color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.5; }
.mhs-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.8em; --fg: #fff; --surface: var(--ink); --line-strong: rgba(255,255,255,.35); }
@media (max-width: 600px) { .mhs-hero__copy .mhs-eyebrow { font-size: .62rem; letter-spacing: .1em; } }
@media (max-width: 900px) {
  .mhs-hero { min-height: 640px; }
  .mhs-hero__copy { max-width: none; }
}

/* ---------- page hero (sub-pages) ---------- */
.mhs-page-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--coal); color: #fff; isolation: isolate; margin-top: calc(-1 * var(--nav-h)); }
.mhs-page-hero--short { min-height: 48svh; }
.mhs-page-hero > img { position: absolute; left: 0; width: 100%; top: -8%; height: 116%; object-fit: cover; }
.mhs-page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.86) 0%, rgba(5,5,6,.25) 55%, rgba(5,5,6,.35) 100%); pointer-events: none; }
.mhs-page-hero__in { position: relative; z-index: 2; width: 100%; padding: calc(var(--nav-h) + 40px) var(--gutter) clamp(28px, 5vh, 56px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
.mhs-page-hero .mhs-eyebrow { color: rgba(255,255,255,.62); margin-bottom: 1em; }
.mhs-page-hero .mhs-display { font-size: clamp(2.3rem, 5.6vw, 5.2rem); color: #fff; }
.mhs-page-hero__sub { margin-top: 1.2em; max-width: 46ch; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.2vw, 1.15rem); }
.mhs-page-hero .mhs-plate { width: 320px; }
@media (max-width: 900px) { .mhs-page-hero__in { grid-template-columns: 1fr; } .mhs-page-hero .mhs-plate { width: 100%; } }

/* ---------- STUDIO statement + facts ---------- */
.mhs-studio__text { margin-top: 1.6em; }
.mhs-studio__text .mhs-link { margin-top: 1.6em; }
.mhs-facts { display: grid; border-top: 1px solid var(--line); }
.mhs-facts div { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 16px; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.mhs-facts b { font-weight: 700; font-size: clamp(2rem, 3.4vw, 3.2rem); letter-spacing: -.03em; line-height: 1; color: var(--fg); white-space: nowrap; }
.mhs-facts b small { font-size: .5em; font-weight: 500; letter-spacing: 0; margin-left: .1em; }
.mhs-facts div > span { font-size: .9rem; color: var(--fg-2); text-align: right; max-width: 22ch; }
.mhs-facts b span { font: inherit; color: inherit; }
.mhs-studio + .mhs-strip { margin-top: clamp(-8px, 0px, 0px); }

/* ---------- CATEGORIES scroller ---------- */
.mhs-cats .mhs-head { padding: 0 var(--gutter); }

/* ---------- SHOP THE LOOK (full-bleed, glass hotspots) ---------- */
.mhs-look { position: relative; overflow: hidden; background: var(--coal); isolation: isolate; }
.mhs-look__media { position: relative; height: min(92svh, 1000px); min-height: 520px; }
.mhs-look__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mhs-look__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,6,.55), rgba(5,5,6,0) 40%, rgba(5,5,6,.35) 100%); pointer-events: none; }
.mhs-look__head { position: absolute; z-index: 3; left: var(--gutter); top: clamp(28px, 5vh, 56px); max-width: 520px; color: #fff; }
.mhs-look__head .mhs-eyebrow { color: rgba(255,255,255,.62); margin-bottom: .9em; }
.mhs-look__head .mhs-h-xl { color: #fff; }
.mhs-look__head .mhs-link { margin-top: 1.4em; --fg: #fff; --line: rgba(255,255,255,.35); }
.mhs-look .mh-hotspot { position: absolute; z-index: 4; width: 30px; height: 30px; margin: -15px 0 0 -15px; border-radius: 0; background: rgba(14,14,16,.46); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: grid; place-items: center; cursor: pointer; padding: 0; color: #fff; transition: transform .3s var(--ease), background .3s; }
.mhs-look .mh-hotspot::before { content: ""; position: absolute; inset: -8px; border-radius: 0; border: 1px solid rgba(255,255,255,.35); animation: mhs-pulse 2.6s ease-out infinite; }
@keyframes mhs-pulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.mhs-look .mh-hotspot__dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; transition: background .3s; }
.mhs-look .mh-hotspot:hover, .mhs-look .mh-hotspot--active { transform: scale(1.1); background: rgba(255,255,255,.92); }
.mhs-look .mh-hotspot:hover .mh-hotspot__dot, .mhs-look .mh-hotspot--active .mh-hotspot__dot { background: var(--red); }
.mhs-look .mh-hotspot__tooltip { position: absolute; left: 50%; bottom: calc(100% + 14px); transform: translate(-50%, 6px); min-width: 180px; padding: 10px 12px; border-radius: 0; background: rgba(14,14,16,.6); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); color: #fff; text-align: left; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); white-space: nowrap; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); }
.mhs-look .mh-hotspot__tooltip strong { display: block; font-weight: 500; font-size: .92rem; letter-spacing: -.01em; }
.mhs-look .mh-hotspot__tooltip span { display: block; font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.mhs-look .mh-hotspot__tooltip span:empty { display: none; }
.mhs-look .mh-hotspot:hover .mh-hotspot__tooltip, .mhs-look .mh-hotspot--active .mh-hotspot__tooltip { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
@media (max-width: 700px) { .mhs-look__media { height: 70svh; } .mhs-look__head { right: var(--gutter); } .mhs-look .mh-hotspot__tooltip { min-width: 140px; white-space: normal; } }

/* ---------- SETS row (paper) ---------- */
.mhs-sets .mhs-head { padding: 0 var(--gutter); }
.mhs-sets .mh-product-carousel__track { display: flex; gap: 4px; overflow-x: auto; scroll-snap-type: x proximity; scroll-padding-left: var(--gutter); scroll-behavior: auto; padding: 0 var(--gutter); scrollbar-width: none; cursor: grab; }
.mhs-sets .mh-product-carousel__track::-webkit-scrollbar { display: none; }
.mhs-sets .mh-product-card { flex: none; width: clamp(260px, 27vw, 420px); scroll-snap-align: start; display: block; background: transparent; border: 0; padding: 0; box-shadow: none; }
.mhs-sets .mh-product-card:last-child { margin-right: var(--gutter); }
.mhs-sets .mh-product-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e6e5e0; border-radius: 0; }
.mhs-sets .mh-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mhs-sets .mh-product-card:hover .mh-product-card__image img { transform: scale(1.04); }
.mhs-sets .mh-product-card__badge { position: absolute; left: 10px; top: 10px; z-index: 2; padding: .35em .7em; border-radius: 0; background: rgba(14,14,16,.5); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); color: #fff; font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.mhs-sets .mh-product-card__info { padding: 14px 4px 0; display: grid; gap: 4px; }
.mhs-sets .mh-product-card__name { font-weight: 500; font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.25; color: var(--fg); margin: 0; }
.mhs-sets .mh-product-card__material { font-size: .84rem; color: var(--fg-3); margin: 0; }
.mhs-sets .mh-product-card__colors { display: flex; gap: 5px; margin: 2px 0; }
.mhs-sets .mh-color-dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.mhs-sets .mh-product-card__price { font-size: .95rem; color: var(--fg); margin-top: 2px; }
.mhs-sets .mh-product-card__price-from { font-weight: 500; }
.mhs-sets .mh-product-carousel__nav { padding: 0; }
.mhs-sets .mh-product-carousel__scrollbar { position: relative; margin: 22px var(--gutter) 0; height: 2px; background: var(--line); }
.mhs-sets .mh-product-carousel__scrollbar-thumb { display: block; height: 100%; width: 60px; background: var(--red); }
.mhs-sets .mh-product-card--placeholder .mh-product-card__image { background: #e6e5e0; }
.mhs-sets .mh-product-card--placeholder img { opacity: 0; }

/* ---------- CONFIGURATOR band (video) ---------- */
.mhs-config { position: relative; overflow: hidden; background: var(--coal); color: #fff; isolation: isolate; min-height: 84svh; display: flex; align-items: center; }
.mhs-config > video, .mhs-config > img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.mhs-config::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,5,6,.88) 0%, rgba(5,5,6,.55) 50%, rgba(5,5,6,.25) 100%); pointer-events: none; }
.mhs-config__in { position: relative; z-index: 2; width: 100%; padding: clamp(72px, 10vw, 140px) var(--gutter); display: grid; grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr); gap: clamp(32px, 6vw, 96px); align-items: end; }
.mhs-config .mhs-eyebrow { color: rgba(255,255,255,.62); margin-bottom: 1.1em; }
.mhs-config .mhs-h-xl { color: #fff; font-size: clamp(2.2rem, 5vw, 4.8rem); }
.mhs-config__text { margin-top: 1.3em; max-width: 52ch; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.2vw, 1.15rem); }
.mhs-config__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.8em; --fg: #fff; --surface: var(--ink); --line-strong: rgba(255,255,255,.35); }
.mhs-config .mhs-plate { max-width: 380px; justify-self: end; }
.mhs-config .mhs-plate__facts { grid-template-columns: auto 1fr; }
@media (max-width: 900px) { .mhs-config__in { grid-template-columns: 1fr; } .mhs-config .mhs-plate { justify-self: start; max-width: none; width: 100%; } }

/* ---------- SHOWROOM (two-up media panels) ---------- */
.mhs-showroom { background: var(--coal); color: #fff; padding: clamp(56px, 7vh, 96px) 0 0; isolation: isolate; }
.mhs-showroom__head { padding: 0 var(--gutter) clamp(26px, 4vh, 46px); max-width: 760px; }
.mhs-showroom__head .mhs-eyebrow { color: rgba(255,255,255,.62); margin-bottom: .9em; }
.mhs-showroom__head .mhs-h-xl { color: #fff; }
.mhs-showroom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mhs-showroom__panel { position: relative; overflow: hidden; isolation: isolate; height: min(66svh, 680px); min-height: 480px; background: var(--coal); }
.mhs-showroom__panel > img { position: absolute; left: 0; width: 100%; top: -8%; height: 116%; object-fit: cover; }
.mhs-showroom__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,6,.82), rgba(5,5,6,.08) 62%); pointer-events: none; }
.mhs-showroom__panel-in { position: absolute; z-index: 2; inset: auto 0 0 0; padding: 0 clamp(20px, 3vw, 44px) clamp(24px, 4vh, 44px); }
.mhs-showroom__eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.72); margin-bottom: 1em; }
.mhs-showroom__panel .mhs-plate { width: min(360px, 100%); }
@media (max-width: 860px) {
    .mhs-showroom__grid { grid-template-columns: 1fr; }
    .mhs-showroom__panel { height: min(72svh, 560px); min-height: 420px; }
    .mhs-showroom__panel .mhs-plate { width: 100%; }
}

/* Real Homes: flush top (per request) */
section#mhHomes { padding-top: 0; }

/* ---------- FAQ (hairline accordion) ---------- */
.mhs-faq__intro { position: sticky; top: calc(var(--nav-h) + 24px); }
.mhs-faq__intro .mhs-prose { margin-top: 1.4em; }
.mhs-faq .mh-faq__item { border-bottom: 1px solid var(--line); margin: 0; padding: 0; background: transparent; }
.mhs-faq .mh-faq__item:first-child { border-top: 1px solid var(--line); }
.mhs-faq .mh-faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 1.15rem 0; text-align: left; font-weight: 500; font-size: 1.08rem; letter-spacing: -.01em; color: var(--fg); background: none; border: 0; }
.mhs-faq .mh-faq__question svg { width: 18px; height: 18px; flex: none; color: var(--fg-3); transition: transform .4s var(--ease), color .3s; }
.mhs-faq .mh-faq__item--open .mh-faq__question svg { transform: rotate(45deg); color: var(--red); }
.mhs-faq .mh-faq__answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.mhs-faq .mh-faq__answer p { padding: 0 0 1.3rem; margin: 0; max-width: 60ch; color: var(--fg-2); font-size: 1rem; line-height: 1.6; white-space: pre-line; }

/* ---------- FOOTER ---------- */
.mhs-footer { background: var(--ink); color: var(--fg-2); border-top: 1px solid var(--line); }
.mhs-footer__cta { padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(40px, 5vw, 64px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; border-bottom: 1px solid var(--line); }
.mhs-footer__cta .mhs-eyebrow { margin-bottom: 1em; }
.mhs-footer__cta .mhs-h-xl { font-size: clamp(2rem, 4.8vw, 4.4rem); }
.mhs-footer__phone { display: inline-block; margin-top: .35em; font-weight: 700; font-size: clamp(1.8rem, 4.2vw, 3.8rem); letter-spacing: -.03em; line-height: 1; color: #fff; transition: color .3s; }
.mhs-footer__phone:hover { color: var(--red); }
.mhs-footer__cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.mhs-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding: clamp(40px, 5vw, 64px) var(--gutter) 0; }
.mhs-footer h4 { font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 1em; }
.mhs-footer ul { list-style: none; margin: 0; padding: 0; }
.mhs-footer li + li { margin-top: .5em; }
.mhs-footer a { transition: color .3s; }
.mhs-footer a:hover { color: #fff; }
.mhs-footer address { font-style: normal; line-height: 1.7; }
.mhs-footer__brand img { height: 26px; width: auto; margin-bottom: 18px; }
.mhs-footer__brand p { max-width: 34ch; font-size: .95rem; }
.mhs-footer__social { display: flex; gap: 8px; margin-top: 18px; }
.mhs-footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 0; border: 1px solid var(--line); color: var(--fg-2); transition: border-color .3s, color .3s, background .3s; }
.mhs-footer__social a:hover { border-color: #fff; color: #fff; }
.mhs-footer__social svg { width: 16px; height: 16px; }
.mhs-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px 28px; flex-wrap: wrap; margin: clamp(40px, 5vw, 72px) var(--gutter) 0; padding: 22px 0 28px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--fg-3); }
.mhs-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.mhs-footer__payments { display: flex; gap: 8px; align-items: center; }
.mhs-footer__payments svg { height: 22px; width: auto; opacity: .9; }
@media (max-width: 900px) { .mhs-footer__cta { grid-template-columns: 1fr; } .mhs-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mhs-footer__grid { grid-template-columns: 1fr; } }

/* ---------- lightbox (glass) ---------- */
.mh-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(6,6,7,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility 0s linear .4s; }
.mh-lightbox.is-active { visibility: visible; opacity: 1; transition: opacity .4s var(--ease); }
.mh-lightbox__img { max-width: min(94vw, 1800px); max-height: 88svh; width: auto; height: auto; object-fit: contain; transform: scale(.94); transition: transform .5s var(--ease); box-shadow: 0 40px 100px -30px rgba(0,0,0,.8); }
.mh-lightbox.is-active .mh-lightbox__img { transform: none; }
.mh-lightbox__close, .mh-lightbox__nav { position: absolute; color: #fff; background: rgba(14,14,16,.46); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 0; width: 48px; height: 48px; display: grid; place-items: center; transition: background .3s; }
.mh-lightbox__close:hover, .mh-lightbox__nav:hover { background: rgba(255,255,255,.14); }
.mh-lightbox__close { top: 20px; right: 20px; }
.mh-lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.mh-lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }
.mh-lightbox__counter { position: absolute; left: 20px; bottom: 18px; font-weight: 500; font-size: .8rem; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.mh-lightbox svg { width: 20px; height: 20px; }

/* ---------- catalog page (light shopping surface) ---------- */
.mhs-catalog__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 36px); }
.mhs-catalog .mh-catalog-filter { font: inherit; font-weight: 500; font-size: .85rem; letter-spacing: .02em; padding: .6em 1.05em; border-radius: 0; border: 1px solid var(--line); background: transparent; color: var(--fg-2); cursor: pointer; transition: all .3s var(--ease); }
.mhs-catalog .mh-catalog-filter:hover { color: var(--fg); border-color: var(--line-strong); }
.mhs-catalog .mh-catalog-filter--active { background: var(--fg); color: var(--paper); border-color: var(--fg); }
.mhs-catalog .mh-catalog-grid__products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .mhs-catalog .mh-catalog-grid__products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .mhs-catalog .mh-catalog-grid__products { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.mhs-collections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 4px; }
.mhs-collections .mhs-tile { aspect-ratio: 2 / 1; }
@media (max-width: 700px) { .mhs-collections { grid-template-columns: 1fr; } .mhs-collections .mhs-tile { aspect-ratio: 16 / 10; } }

/* ---------- dense product grid (catalog + type archives) ---------- */
.mhs-products.mh-catalog-grid__products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 4px; padding: 0 var(--gutter); max-width: none; margin: 0; }
@media (min-width: 1700px) { .mhs-products.mh-catalog-grid__products { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1100px) { .mhs-products.mh-catalog-grid__products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .mhs-products.mh-catalog-grid__products { grid-template-columns: repeat(2, 1fr); gap: 22px 4px; } }
.mhs-products .fc-product-card { background: transparent; border: 0; box-shadow: none; transition: none; }
.mhs-products .fc-product-card:hover { transform: none; box-shadow: none; }
.mhs-products .fc-product-card__image { aspect-ratio: 4 / 5; margin-bottom: 12px; background: #e6e5e0; }
.mhs-products .fc-product-card__image img { transition: transform 1.2s var(--ease); }
.mhs-products .fc-product-card:hover .fc-product-card__image img { transform: scale(1.05); }
.mhs-products .fc-product-card__content { padding: 0 2px; gap: 2px; }
.mhs-products .fc-product-card__collection { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 2px; }
.mhs-products .fc-product-card__title { font-weight: 500; font-size: .98rem; letter-spacing: -.01em; line-height: 1.25; margin: 0 0 4px; color: var(--fg); }
.mhs-products .fc-product-card__title a { color: inherit; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px; transition: background-size .4s var(--ease); }
.mhs-products .fc-product-card:hover .fc-product-card__title a { background-size: 100% 1px; }
.mhs-products .fc-product-card__price { font-size: .9rem; color: var(--fg-2); margin: 0; }
.mhs-products .fc-product-card__colors { margin-top: 6px; }
.mhs-catalog__head .mhs-head { margin-bottom: clamp(16px, 2vw, 24px); }
.mhs-catalog__filters { margin-bottom: clamp(20px, 3vw, 32px); }
.mhs-catalog .mh-catalog-filter { text-decoration: none; display: inline-flex; align-items: center; }
.mhs-pagination { padding: clamp(32px, 4vw, 56px) var(--gutter) 0; }
.mhs-pagination ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; }
.mhs-pagination a, .mhs-pagination span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--line); font-weight: 500; font-size: .9rem; color: var(--fg-2); transition: all .3s var(--ease); }
.mhs-pagination a:hover { border-color: var(--fg); color: var(--fg); }
.mhs-pagination .current { background: var(--fg); border-color: var(--fg); color: var(--paper); }

/* ---------- motion layer ---------- */
[data-animate] { transform: translateY(48px); transition-duration: .9s; transition-timing-function: cubic-bezier(.16, 1, .3, 1); }
[data-animate="stagger"] > * { transform: translateY(40px); transition-duration: .8s; transition-timing-function: cubic-bezier(.16, 1, .3, 1); }
[data-animate="stagger"].mh-visible > *:nth-child(n+7) { transition-delay: .5s; }
.mhs-eyebrow::before { width: 18px; }
[data-animate] .mhs-eyebrow::before, .mhs-hero__copy .mhs-eyebrow::before { width: 0; transition: width .9s var(--ease) .35s; }
[data-animate].mh-visible .mhs-eyebrow::before, body.is-loaded .mhs-hero__copy .mhs-eyebrow::before { width: 18px; }
.js .mhs-wipe { position: relative; }
.js .mhs-wipe::before { content: ""; position: absolute; inset: 0; z-index: 6; background: var(--surface, var(--paper)); transform-origin: 50% 0; transform: scaleY(1); transition: transform 1.1s cubic-bezier(.16, 1, .3, 1); transition-delay: var(--wipe-delay, 0ms); pointer-events: none; }
.js .mhs-wipe.is-in::before { transform: scaleY(0); }
.mhs-offcanvas { --surface: var(--ink); }
.mhs-sets .mh-product-card, .mhs-products .fc-product-card { --surface: var(--paper); }
.js .mhs-wipe > img, .js .mhs-wipe .fc-product-card__image img { transition: transform 1.4s cubic-bezier(.16, 1, .3, 1); }
.mhs-header { transition: background .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease); }
.mhs-header.mh-header--hidden { transform: translateY(-100%); }
body.mh-no-scroll .mhs-header.mh-header--hidden { transform: none; }
[data-parallax] > img, [data-parallax] .mhs-look__media > img { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-animate="stagger"] > * { transform: none !important; transition: none !important; opacity: 1 !important; }
  .js .mhs-wipe::before { display: none; }
  .mhs-header.mh-header--hidden { transform: none; }
}

/* ---------- collections archive: full-bleed rows ---------- */
.mhs-collections-list { display: grid; gap: 4px; padding: 0 4px; }
.mhs-collections-list .mhs-tile--wide { aspect-ratio: 21 / 9; min-height: 420px; }
.mhs-collections-list .mhs-tile--wide .mhs-plate { left: clamp(16px, 3vw, 40px); bottom: clamp(16px, 3vw, 40px); max-width: min(520px, calc(100% - 32px)); padding: 18px 20px 22px; }
.mhs-collections-list .mhs-tile--wide .mhs-plate__title { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; letter-spacing: -.025em; margin-top: .45em; }
.mhs-collections-list .mhs-tile--wide .mhs-plate__meta { font-size: .95rem; margin-top: .5em; max-width: 46ch; }
.mhs-collections-list .mhs-tile--wide .mhs-plate__cta { margin-top: 1.1em; }
.mhs-collections-filters { align-items: center; }
.mhs-collections-filters__sep { width: 1px; height: 24px; background: var(--line); margin: 0 6px; }
.mhs-collections-filters .mhs-dot { width: 12px; height: 12px; border-radius: 50%; margin-right: .5em; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
@media (max-width: 700px) { .mhs-collections-list .mhs-tile--wide { aspect-ratio: 4 / 5; min-height: 0; } }

/* ---------- single collection ---------- */
.mhs-hero--page { height: 86svh; min-height: 560px; }
.mhs-usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); border-top: 1px solid var(--line); padding-top: clamp(24px, 3vw, 40px); }
.mhs-gallery--strip a { aspect-ratio: 4 / 5; }
@media (max-width: 900px) { .mhs-gallery--strip { grid-template-columns: repeat(2, 1fr) !important; } }
.mhs-usps__item { display: grid; gap: .7rem; align-content: start; }
.mhs-usps__icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--fg); }
.mhs-usps__icon svg { width: 22px; height: 22px; }
.mhs-usps p { margin: 0; max-width: 36ch; color: var(--fg-2); font-size: 1rem; }
.mhs-products__cell { display: contents; }
.mhs-products .mhs-products__cell .fc-product-card { display: flex; }
@media (max-width: 800px) { .mhs-usps { grid-template-columns: 1fr; } }

/* ---------- colour chips (hero) ---------- */
.mhs-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.4em; }
.mhs-chip { display: inline-flex; align-items: center; gap: .55em; padding: .5em .9em .5em .6em; font-weight: 500; font-size: .85rem; letter-spacing: .02em; color: #fff; background: rgba(14,14,16,.46); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.mhs-chip i { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.mhs-strip a.mhs-tile { cursor: zoom-in; }

/* ---------- static pages: chapters, hours, map, contact ---------- */
.mhs-chapter { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 4vw, 64px); padding: clamp(40px, 5vw, 72px) 0; border-top: 1px solid var(--line); }
.mhs-chapter__aside { grid-column: span 4; display: grid; align-content: start; gap: 14px; }
.mhs-chapter__num { font-weight: 400; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -.04em; line-height: 1; color: var(--fg-3); }
.mhs-chapter__body { grid-column: span 8; max-width: 66ch; }
.mhs-chapter__body p { margin: 1em 0 0; font-size: clamp(1.02rem, 1.2vw, 1.15rem); line-height: 1.6; color: var(--fg-2); text-wrap: pretty; }
.mhs-chapter__body .mhs-h-lg + p { margin-top: 1.2em; }
@media (max-width: 900px) { .mhs-chapter { grid-template-columns: 1fr; gap: 16px; } .mhs-chapter__aside, .mhs-chapter__body { grid-column: auto; } .mhs-chapter__aside { grid-template-columns: auto 1fr; align-items: center; } }
.mhs-hours { border-top: 1px solid var(--line); }
.mhs-hours div { display: flex; justify-content: space-between; gap: 16px; padding: .9rem 0; border-bottom: 1px solid var(--line); color: var(--fg-2); }
.mhs-hours div span:last-child { color: var(--fg); font-weight: 500; }
.mhs-hours div.is-closed span:last-child { color: var(--fg-3); font-weight: 400; }
.mhs-map { position: relative; background: var(--slate); border: 1px solid var(--line); aspect-ratio: 4 / 3; overflow: hidden; }
.mhs-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) brightness(.93); }
.mhs-contact-big { display: block; width: fit-content; font-weight: 700; font-size: clamp(2rem, 4.6vw, 4.2rem); letter-spacing: -.035em; line-height: 1; color: var(--fg); transition: color .3s; }
.mhs-contact-big--sm { font-size: clamp(1.4rem, 2.6vw, 2.4rem); letter-spacing: -.025em; }
.mhs-contact-big:hover { color: var(--red); }
.mhs-contact dl { display: grid; gap: 1.3rem; margin: clamp(28px, 4vw, 48px) 0 0; }
.mhs-contact dt { font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: .35em; }
.mhs-contact dd { margin: 0; color: var(--fg); font-size: 1.12rem; line-height: 1.45; }
.mhs-contact dd a { border-bottom: 1px solid var(--line); transition: border-color .3s; }
.mhs-contact dd a:hover { border-color: var(--red); }
/* plugin product cards inside studio rows */
.mhs-sets .mh-product-carousel__track .fc-product-card { flex: none; width: clamp(260px, 27vw, 420px); scroll-snap-align: start; background: transparent; border: 0; box-shadow: none; }
.mhs-sets .mh-product-carousel__track .fc-product-card:last-child { margin-right: var(--gutter); }
.mhs-sets .fc-product-card__image { aspect-ratio: 4 / 3; margin-bottom: 12px; background: #e6e5e0; }
.mhs-sets .fc-product-card__image img { transition: transform 1.2s var(--ease); }
.mhs-sets .fc-product-card:hover .fc-product-card__image img { transform: scale(1.05); }
.mhs-sets .fc-product-card__content { padding: 0 2px; }
.mhs-sets .fc-product-card__collection { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 2px; }
.mhs-sets .fc-product-card__title { font-weight: 500; font-size: .98rem; letter-spacing: -.01em; line-height: 1.25; margin: 0 0 4px; color: var(--fg); }
.mhs-sets .fc-product-card__price { font-size: .9rem; color: var(--fg-2); margin: 0; }
body.single-fc_product .mhs-sets { padding-left: 0; padding-right: 0; }

/* ---------- misc ---------- */
.mhs-note { font-size: .85rem; color: var(--fg-3); }
@media (prefers-reduced-motion: reduce) {
  .mhs-hero__media img { animation: none !important; transform: none; transition: opacity .6s; }
  .mhs-look .mh-hotspot::before { animation: none; }
  .mhs-tile img, .mhs-gallery img, .mhs-hero__copy > * { transition: none !important; }
  .js body:not(.is-loaded) .mhs-hero__copy > * { opacity: 1; transform: none; }
}

/* ---------- third-party widgets inherit the brand font (Maki concierge, RoomVision) ---------- */
html:root, #mkc-root, :root { --mkc-font: var(--mh-font-sans); --mkrv-font: var(--mh-font-sans); --mkc-radius: 0; --mkrv-radius: 0; --mkrv-radius-sm: 0; }

/* ---------- WooCommerce notices on paper ---------- */
.woocommerce-info, .woocommerce-message, .woocommerce-error, .woocommerce-notice { background: #fff; border: 1px solid var(--line); border-radius: 0; color: var(--fg-2); }
.woocommerce-info::before, .woocommerce-message::before { color: var(--red); }

/* ---------- product page: "about" block on ink ---------- */
body .mh-sp-about { background: var(--ink); color: rgba(255,255,255,.7); border-top: 0; }
.mh-sp-about .mh-sp-about__title, .mh-sp-about h2, .mh-sp-about h3, .mh-sp-about h4, .mh-sp-about strong, .mh-sp-about .mh-sp-accordion__trigger { color: #fff; }
.mh-sp-about .mh-sp-about__intro, .mh-sp-about p, .mh-sp-about li, .mh-sp-about td, .mh-sp-about .mh-sp-accordion__content { color: rgba(255,255,255,.7); }
.mh-sp-about .mh-sp-accordion { border-bottom-color: rgba(255,255,255,.14); }
.mh-sp-about .mh-sp-accordion:first-child { border-top: 1px solid rgba(255,255,255,.14); }
.mh-sp-about .mh-sp-accordion__trigger:hover { color: rgba(255,255,255,.75); }
.mh-sp-about .mh-sp-accordion__trigger svg { color: rgba(255,255,255,.55); }
.mh-sp-about .mh-sp-accordion.is-open .mh-sp-accordion__trigger svg { color: var(--red); }
.mh-sp-about .mh-sp-dim-gallery__item { background: var(--slate); }
.mh-sp-about a { color: #fff; }
.mh-sp-about .mh-btn--outline-dark { border-color: rgba(255,255,255,.4); color: #fff; }
.mh-sp-about .mh-btn--outline-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.mh-sp-about .mh-link-arrow { color: #fff; }

/* ---------- Maki launcher: sharp ---------- */
#mkc-root .mkc-btn, #mkc-root .mkc-bubble, #mkc-root .mkc-panel, #mkc-root .mkc-input, #mkc-root textarea, #mkc-root input { border-radius: 0 !important; }
#mkc-launcher, #mkc-root #mkc-launcher, #mkc-root .mkc-iconbtn, #mkc-root .mkc-launcher__avatar { border-radius: 999px !important; }

/* ---------- product page only: white header (everything else keeps the dark glass shell) ---------- */
body.single-fc_product .mhs-header, body.single-fc_product .mhs-header.mh-header--scrolled { background: #fff; color: var(--ink); border-bottom: 1px solid rgba(10,10,11,.1); backdrop-filter: none; -webkit-backdrop-filter: none; }
body.single-fc_product .mhs-header__logo img, body.single-fc_product .mhs-header__logo .custom-logo { filter: invert(1); }
body.single-fc_product .mhs-header__logo-text { color: var(--ink); }
body.single-fc_product .mhs-header__nav a { color: rgba(10,10,11,.7); }
body.single-fc_product .mhs-header__nav a:hover, body.single-fc_product .mhs-header__nav a[aria-current="page"] { color: var(--ink); }
body.single-fc_product .mhs-header__icon, body.single-fc_product .mhs-search__btn, body.single-fc_product .mhs-header__phone { color: rgba(10,10,11,.75); }
body.single-fc_product .mhs-header__icon:hover, body.single-fc_product .mhs-search__btn:hover, body.single-fc_product .mhs-header__phone:hover { background: rgba(10,10,11,.06); color: var(--ink); }
body.single-fc_product .mhs-burger span { background: var(--ink); }
body.single-fc_product .mhs-search:focus-within, body.single-fc_product .mhs-search.is-open { background: rgba(10,10,11,.05); border-color: rgba(10,10,11,.15); }
body.single-fc_product .mhs-search__input { color: var(--ink); }
body.single-fc_product .mhs-search__input::placeholder { color: rgba(10,10,11,.45); }

/* ---------- circular icon controls (exception to the sharp-corners rule) ---------- */
.mhs-arrows button, .mhs-look .mh-hotspot, .mhs-look .mh-hotspot::before, .mh-lightbox__close, .mh-lightbox__nav, .mhs-header__icon, .mhs-search, .mhs-search__btn, .mhs-header__cart-count, .mhs-header__phone, .mhs-offcanvas__close, .mhs-footer__social a { border-radius: 999px; }
