@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
  --paper: #f4f0e8;
  --cream: #e9e0d2;
  --ink: #1d292b;
  --teal: #233a3d;
  --wine: #8f473f;
  --sage: #83908b;
  --beige: #c9bb9d;
  --line: rgba(29, 41, 43, .16);
  --serif: 'Cormorant Garamond', 'Didot', 'Bodoni 72', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --sans: 'DM Sans', 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(.2, .72, .18, 1);
  --ease-cinematic: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.85; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { color: inherit; font: inherit; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.cover-loader { position: fixed; inset: 0; z-index: 5000; display: grid; place-content: center; gap: 18px; background: var(--paper); text-align: center; transition: opacity .8s var(--ease), visibility .8s; }
.cover-loader p { font-family: var(--serif); font-size: clamp(72px, 12vw, 170px); letter-spacing: -.08em; line-height: .7; }
.cover-loader p span { color: var(--wine); }
.cover-loader small { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; }
.cover-loader__line { width: 0; height: 1px; margin: 0 auto 18px; background: var(--ink); animation: loaderLine 1.1s var(--ease) forwards; }
.is-loaded .cover-loader { opacity: 0; visibility: hidden; pointer-events: none; }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 3000; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--wine), var(--beige)); transform: scaleX(0); transform-origin: left; }

.cursor { --x: 50vw; --y: 50vh; position: fixed; z-index: 4000; top: 0; left: 0; width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; pointer-events: none; opacity: 0; transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%)); transition: width .35s var(--ease), height .35s var(--ease), background .35s, opacity .25s; }
.cursor span { opacity: 0; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; transition: opacity .2s; }
.cursor.is-visible { opacity: 1; }
.cursor.is-expanded { width: 82px; height: 82px; border-color: rgba(255,255,255,.7); background: rgba(29,41,43,.72); color: #fff; backdrop-filter: blur(7px); }
.cursor.is-expanded span { opacity: 1; }

.issue-rail { position: fixed; z-index: 700; right: 18px; top: 50%; display: flex; align-items: center; gap: 15px; color: rgba(29,41,43,.55); font-size: 8px; letter-spacing: .18em; writing-mode: vertical-rl; transform: translateY(-50%); }
.issue-rail b { color: var(--wine); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.issue-rail i { width: 1px; height: 55px; background: var(--line); }

.edit-cut {
  position: fixed;
  inset: 0;
  z-index: 4600;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.edit-cut::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,240,232,.72);
  opacity: 0;
}

.edit-cut span {
  position: absolute;
  left: -48vw;
  width: 48vw;
  height: 1px;
  background: var(--wine);
  box-shadow: 0 0 18px rgba(143,71,63,.62), 0 0 60px rgba(201,187,157,.78);
}

.edit-cut span:first-child { top: 42%; }
.edit-cut span:nth-child(2) { top: 58%; left: auto; right: -48vw; background: var(--teal); }
.edit-cut b { position: absolute; right: 5vw; bottom: 6vh; color: var(--ink); font-size: 8px; font-weight: 400; letter-spacing: .26em; opacity: 0; }
.edit-cut.is-active { visibility: visible; }
.edit-cut.is-active::before { animation: editFlash .52s ease-out both; }
.edit-cut.is-active span:first-child { animation: cutLineRight .68s var(--ease) both; }
.edit-cut.is-active span:nth-child(2) { animation: cutLineLeft .68s .04s var(--ease) both; }
.edit-cut.is-active b { animation: cutLabel .62s .06s ease-out both; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 2000; height: 88px; padding: 0 clamp(24px, 4vw, 64px); display: grid; grid-template-columns: 1fr auto; align-items: center; border-top: 3px solid var(--teal); border-bottom: 1px solid rgba(29,41,43,.12); color: var(--ink); transition: background .4s, height .4s; }
.site-header.is-scrolled { height: 72px; background: rgba(244,240,232,.92); backdrop-filter: blur(14px); }
.brand { font-family: var(--serif); font-size: 34px; letter-spacing: .11em; line-height: 1; }
.brand span { color: var(--wine); }
.site-nav { display: flex; align-items: center; gap: clamp(28px,3.5vw,58px); font-size: 9px; letter-spacing: .23em; text-transform: uppercase; }
.site-nav > a { position: relative; }
.site-nav > a:not(.inquiry-link)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.site-nav > a:hover::after { right: 0; }
.inquiry-link { padding: 12px 16px 12px 20px; display: flex; gap: 28px; border: 1px solid rgba(29,41,43,.42); transition: background .3s, color .3s; }
.inquiry-link:hover { background: var(--teal); color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; width: 45px; height: 45px; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .3s; }

.page-shell { width: min(100% - 48px, 1380px); margin: 0 auto; }
.overline { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; }
.folio { display: flex; gap: 18px; padding-top: 9px; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.folio span { color: var(--wine); }
.folio--light { color: #fff; }
.folio--light span { color: #d4b19d; }

.hero { position: relative; height: 100svh; min-height: 760px; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { height: calc(100% + 90px); object-fit: cover; object-position: center; transform: translateY(var(--parallax-y,0)); will-change: transform; }
.hero-overlay { background: linear-gradient(90deg, rgba(244,240,232,.98) 0%, rgba(244,240,232,.9) 29%, rgba(244,240,232,.38) 50%, rgba(244,240,232,.02) 75%), linear-gradient(0deg, rgba(29,41,43,.16), transparent 35%); }
.hero-content { position: relative; z-index: 2; height: 100%; padding: 15vh clamp(25px,6.2vw,100px) 8vh; display: flex; flex-direction: column; justify-content: center; }
.hero-overline { margin-bottom: clamp(28px,4vh,48px); color: rgba(29,41,43,.6); }
.hero h1 { font-family: var(--serif); font-size: clamp(68px,9vw,145px); font-weight: 300; letter-spacing: -.075em; line-height: .78; }
.hero h1 span, .hero h1 em { display: inline-block; animation: heroLine 1.1s .9s var(--ease) both; }
.hero h1 em { color: var(--sage); font-weight: 300; animation-delay: 1.05s; }
.hero-bottom { width: min(100%,670px); margin-top: clamp(50px,7vh,82px); padding-left: clamp(0px,11vw,175px); display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: end; }
.hero-bottom p { color: rgba(29,41,43,.65); font-size: 13px; }
.arrow-link { display: inline-flex; justify-content: space-between; align-items: center; gap: 40px; min-width: 155px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.arrow-link span { transition: transform .3s; }
.arrow-link:hover span { transform: translate(4px,-3px); }
.hero-edition { position: absolute; z-index: 2; right: 55px; bottom: 30px; display: flex; gap: 26px; color: rgba(255,255,255,.72); font-size: 8px; letter-spacing: .22em; }

.ticker { overflow: hidden; padding: 27px 0; border-block: 1px solid var(--line); background: #e8dfd2; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 34px; color: rgba(29,41,43,.6); font-family: var(--serif); font-size: clamp(25px,2.7vw,42px); font-style: italic; animation: tickerMove 34s linear infinite; }
.ticker-track i { color: var(--wine); font-family: var(--sans); font-size: 9px; }

.manifesto { padding: clamp(120px,13vw,210px) 0; background: #f8f5ef; }
.manifesto-grid { display: grid; grid-template-columns: .55fr 2.2fr 1.05fr; gap: clamp(36px,6vw,90px); align-items: start; }
.display-en { color: #8b9692; font-family: var(--serif); font-size: clamp(48px,6.2vw,95px); letter-spacing: -.055em; line-height: .85; }
.display-en em { color: #b0aaa0; }
.manifesto h2 { margin-top: clamp(60px,7vw,105px); font-family: var(--serif); font-size: clamp(37px,4.5vw,68px); font-weight: 300; line-height: 1.35; }
.manifesto-body { max-width: 790px; margin: clamp(50px,6vw,88px) 0 0 clamp(0px,7vw,115px); display: grid; grid-template-columns: repeat(2,1fr); gap: 55px; color: #73756f; font-size: 13px; }
.manifesto-image { align-self: end; margin-top: 15vw; }
.manifesto-image img { aspect-ratio: .78; object-fit: cover; transform: scale(1.08) translateY(var(--parallax-y,0)); }
.manifesto-image figcaption { padding-top: 12px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }

.business { padding: clamp(115px,13vw,200px) 0 0; background: var(--teal); color: #f7f3ec; }
.business-cover { display: grid; grid-template-columns: .55fr 3.25fr; gap: 6vw; margin-bottom: clamp(90px,11vw,170px); }
.business-cover__title h2 { font-family: var(--serif); font-size: clamp(67px,8.5vw,130px); font-weight: 300; letter-spacing: -.07em; line-height: .76; }
.business-cover__title h2 em { color: #b8b8ad; }
.business-cover__title p { margin-top: 42px; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .1em; }

.feature { min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; background: var(--paper); color: var(--ink); }
.feature--digital { grid-template-columns: .85fr 1.15fr; border-top: 1px solid var(--line); }
.feature-media { position: relative; min-height: 720px; overflow: hidden; }
.feature-media img { position: absolute; inset: -40px 0; height: calc(100% + 80px); object-fit: cover; transform: scale(1.035) translateY(var(--parallax-y,0)); transition: transform 1.2s var(--ease); }
.feature-media:hover img { transform: scale(1.07) translateY(var(--parallax-y,0)); }
.image-index { position: absolute; left: 22px; bottom: 20px; padding: 8px 11px; background: rgba(244,240,232,.86); color: var(--ink); font-size: 8px; letter-spacing: .18em; }
.feature-copy { padding: clamp(60px,7vw,110px); display: flex; flex-direction: column; justify-content: center; }
.feature-meta { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: #777a74; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.feature-en { margin: clamp(45px,6vw,82px) 0 35px; font-family: var(--serif); font-size: clamp(47px,5vw,78px); line-height: .87; letter-spacing: -.05em; }
.feature-en em { color: var(--sage); }
.feature-copy h3 { font-family: var(--serif); font-size: clamp(32px,3.3vw,50px); font-weight: 300; line-height: 1.35; }
.feature-description { max-width: 480px; margin-top: 36px; color: #6c6f69; font-size: 13px; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; list-style: none; }
.keyword-list li { padding: 5px 11px; border: 1px solid var(--line); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }

.venture-spread { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; padding-top: clamp(90px,10vw,150px); background: rgba(255,255,255,.18); }
.venture { overflow: hidden; background: #e2e5df; color: var(--ink); }
.venture--muu { background: #e9e0d2; }
.venture-head { padding: 18px 25px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.venture-image { position: relative; height: clamp(420px,37vw,590px); overflow: hidden; background: #d4dcd5; }
.venture-image > img:first-child { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.venture-image:hover > img:first-child { transform: scale(1.035); }
.venture-image--muu { background: #22373a; }
.venture-image--muu .muu-scene { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .25; mix-blend-mode: luminosity; }
.muu-logo-image { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: 72%; height: auto !important; object-fit: contain !important; transform: translate(-50%,-50%); filter: drop-shadow(0 8px 28px rgba(0,0,0,.16)); }
.venture-image--muu:hover .muu-logo-image { transform: translate(-50%,-50%) scale(1.03) !important; }
.venture-copy { min-height: 310px; padding: clamp(35px,4vw,62px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 35px; align-items: start; }
.venture-copy h3 { font-family: var(--serif); font-size: clamp(34px,3.3vw,50px); font-weight: 300; line-height: 1.18; }
.venture-copy h3 em { color: #74847f; }
.venture-copy p { color: #696c67; font-size: 12px; }
.venture-copy .arrow-link { grid-column: 2; margin-top: 15px; }

.company-note { padding: clamp(120px,14vw,220px) 0; background: #f8f5ef; }
.company-note-grid { display: grid; grid-template-columns: .55fr 2fr 1.2fr; gap: 6vw; }
.company-note-copy h2 { margin-top: 28px; font-family: var(--serif); font-size: clamp(52px,6.4vw,98px); font-weight: 300; letter-spacing: -.06em; line-height: .84; }
.company-note-copy h2 em { color: var(--sage); }
.company-note-copy > p:last-of-type { max-width: 570px; margin: 60px 0 0 11vw; color: #6e716b; font-size: 13px; }
.square-link { width: 155px; height: 155px; margin: 70px 0 0 auto; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--ink); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; transition: background .35s,color .35s,transform .35s; }
.square-link b { align-self: end; font-size: 17px; font-weight: 300; }
.square-link:hover { background: var(--teal); color: #fff; transform: translateY(-6px); }
.company-index { border-top: 1px solid var(--line); }
.company-index div { padding: 22px 5px; display: grid; grid-template-columns: 40px 1fr; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; }
.company-index span { color: var(--wine); font-family: var(--sans); font-size: 8px; }

.site-footer { padding: clamp(80px,10vw,140px) clamp(24px,4vw,65px) 30px; background: #ded3c2; }
.footer-main { min-height: 350px; display: grid; grid-template-columns: .55fr 2fr 1fr; gap: 40px; align-items: start; }
.footer-logo { font-family: var(--serif); font-size: 38px; letter-spacing: .12em; }
.footer-logo span { color: var(--wine); }
.footer-main > p { font-family: var(--serif); font-size: clamp(54px,6.4vw,98px); letter-spacing: -.06em; line-height: .82; }
.footer-mail { justify-self: end; padding-bottom: 8px; border-bottom: 1px solid rgba(29,41,43,.4); font-size: 10px; letter-spacing: .12em; }
.footer-bottom { padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid rgba(29,41,43,.16); color: rgba(29,41,43,.52); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom > p { justify-self: center; }
.footer-bottom > a { justify-self: end; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.image-reveal { position: relative; overflow: hidden; }
.image-reveal::after { content: ''; position: absolute; z-index: 9; inset: 0; background: var(--paper); transform: scaleX(1); transform-origin: right; }
.image-reveal.is-visible::after { animation: imageCurtain 1.62s .04s both; }
.image-reveal > img,
.image-reveal > .digital-magazine { scale: 1.14; }
.image-reveal.is-visible > img,
.image-reveal.is-visible > .digital-magazine { animation: imageSettle 1.82s var(--ease-cinematic) both; }

@keyframes loaderLine { to { width: 190px; } }
@keyframes heroLine { from { opacity: 0; transform: translateY(45px); filter: blur(5px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@keyframes heroArtboardReveal { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0); } }
@keyframes orbitTurn { to { rotate: 360deg; } }
@keyframes imageCurtain {
  0% { transform: scaleX(1); animation-timing-function: cubic-bezier(.08,.82,.16,1); }
  30% { transform: scaleX(.14); animation-timing-function: cubic-bezier(.18,.72,.2,1); }
  100% { transform: scaleX(0); }
}
@keyframes imageSettle {
  0% { scale: 1.14; }
  30% { scale: 1.035; }
  100% { scale: 1; }
}

@media (max-width: 980px) {
  .issue-rail { display: none; }
  .manifesto-grid { grid-template-columns: .45fr 2fr; }
  .manifesto-image { grid-column: 2; width: 60%; margin: 60px 0 0 auto; }
  .feature { min-height: 0; grid-template-columns: 1fr; }
  .feature--digital .feature-copy { order: 2; }
  .feature-media { min-height: 600px; }
  .venture-copy { grid-template-columns: 1fr; }
  .venture-copy .arrow-link { grid-column: 1; }
  .company-note-grid { grid-template-columns: .4fr 1.8fr; }
  .company-index { grid-column: 2; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; padding: 0 20px; }
  .brand { font-size: 29px; }
  .menu-toggle { position: relative; z-index: 2; display: block; justify-self: end; }
  .site-nav { position: fixed; inset: 0; z-index: 1; padding: 110px 24px 55px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 20px; background: var(--cream); font-family: var(--serif); font-size: 37px; letter-spacing: -.02em; text-transform: none; opacity: 0; visibility: hidden; transition: opacity .35s,visibility .35s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .inquiry-link { margin-top: 15px; font-family: var(--sans); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
  .page-shell { width: min(100% - 40px,1380px); }
  .hero { min-height: 720px; }
  .hero-media img { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(244,240,232,.98) 11%, rgba(244,240,232,.76) 55%, rgba(244,240,232,.08)); }
  .hero-content { padding: 120px 22px 80px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(61px,18vw,88px); line-height: .78; }
  .hero-bottom { margin-top: 40px; padding-left: 0; grid-template-columns: 1fr; gap: 25px; }
  .hero-edition { display: none; }
  .ticker { padding: 20px 0; }
  .ticker-track { animation-duration: 24s; }
  .manifesto { padding: 100px 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-image { grid-column: 1; width: 78%; margin: 30px 0 0 auto; }
  .display-en { font-size: 50px; }
  .manifesto h2 { margin-top: 45px; font-size: 35px; }
  .manifesto-body { margin: 40px 0 0; grid-template-columns: 1fr; gap: 20px; }
  .business { padding-top: 100px; }
  .business-cover { grid-template-columns: 1fr; gap: 50px; }
  .business-cover__title h2 { font-size: 62px; }
  .feature-media { min-height: 390px; }
  .feature-copy { padding: 60px 22px 75px; }
  .feature-en { font-size: 51px; }
  .venture-spread { grid-template-columns: 1fr; }
  .venture-image { height: 420px; }
  .venture-copy { min-height: 0; padding: 35px 25px 45px; }
  .company-note { padding: 100px 0; }
  .company-note-grid { grid-template-columns: 1fr; gap: 45px; }
  .company-note-copy h2 { font-size: 53px; }
  .company-note-copy > p:last-of-type { margin: 40px 0 0; }
  .company-index { grid-column: 1; }
  .site-footer { padding: 80px 20px 25px; }
  .footer-main { min-height: 380px; grid-template-columns: 1fr; }
  .footer-main > p { margin-top: 25px; font-size: 60px; }
  .footer-mail { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr 1fr; row-gap: 25px; }
  .footer-bottom nav { grid-column: 1 / -1; flex-wrap: wrap; }
  .footer-bottom > p { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cover-loader { display: none; }
  .reveal { opacity: 1; transform: none; }
  .image-reveal::after { display: none; }
  .media-parallax img { transform: none !important; }
  .cursor { display: none; }
}

/* Original editorial boards: no generated or stock-style photography */
.hero {
  background:
    linear-gradient(90deg, rgba(35,58,61,.035) 1px, transparent 1px) 0 0 / 8.333% 100%,
    var(--paper);
}

.hero-overlay {
  pointer-events: none;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(244,240,232,.96) 38%, rgba(244,240,232,.15) 62%, transparent 100%);
}

.hero-artboard {
  --board-x: 0px;
  --board-y: 0px;
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 4.5%;
  width: min(56vw, 900px);
  height: 76%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 10px;
  perspective: 1300px;
}

.hero-artboard::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.art-panel {
  --depth-y: 0px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  transform: translate3d(var(--board-x), calc(var(--board-y) + var(--depth-y)), 0);
  transition: transform .32s var(--ease), filter .4s;
  box-shadow: 0 20px 60px rgba(29,41,43,.08);
}

.art-panel:hover { filter: brightness(1.035); }
.art-panel > span { position: relative; z-index: 2; font-size: 8px; letter-spacing: .18em; }

.art-panel--strategy {
  grid-column: 1 / 8;
  grid-row: 1 / 7;
  background: var(--teal);
  color: #f5f0e6;
}

.art-panel--strategy strong {
  position: absolute;
  left: 8%;
  bottom: 10%;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: .78;
}

.art-panel--strategy strong em { color: #bdc4bf; }
.art-panel--strategy i { position: absolute; right: -10%; width: 65%; height: 1px; background: rgba(255,255,255,.2); transform-origin: right; }
.art-panel--strategy i:nth-of-type(1) { top: 22%; transform: rotate(-25deg); }
.art-panel--strategy i:nth-of-type(2) { top: 52%; transform: rotate(15deg); }
.art-panel--strategy i:nth-of-type(3) { top: 78%; transform: rotate(-8deg); }

.art-panel--ip {
  grid-column: 8 / 13;
  grid-row: 1 / 8;
  background: #d8e0da;
}

.art-panel--ip img {
  position: absolute;
  left: 7%;
  bottom: -8%;
  width: 88%;
  border-radius: 50%;
  filter: saturate(.82);
  transition: transform 1s var(--ease);
}

.art-panel--ip:hover img { transform: rotate(-2deg) scale(1.04); }

.art-panel--digital {
  grid-column: 1 / 7;
  grid-row: 7 / 13;
  background: #e7ddcd;
}

.mini-ui {
  position: absolute;
  inset: 25% 8% 18%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 6px;
}

.mini-ui b { display: block; border: 1px solid rgba(29,41,43,.18); background: rgba(255,255,255,.42); }
.mini-ui b:first-child { grid-row: 1 / 3; background: #7f918b; }
.mini-ui b:nth-child(3), .mini-ui b:nth-child(5) { background: #a65349; }
.art-panel--digital small { position: absolute; left: 18px; bottom: 13px; font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }

.art-panel--muu {
  grid-column: 7 / 13;
  grid-row: 8 / 13;
  display: grid;
  place-items: center;
  background: #8f473f;
  color: #f3eadc;
}

.art-panel--muu > span { position: absolute; top: 18px; left: 18px; }
.art-panel--muu img { width: 74%; filter: drop-shadow(0 8px 22px rgba(0,0,0,.16)); transition: transform .8s var(--ease); }
.art-panel--muu:hover img { transform: scale(1.035); }
.artboard-caption { position: absolute; right: 0; bottom: -31px; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }

/* One clear company image: LoM. at the center, four disciplines beneath it */
.hero-artboard {
  display: block;
  gap: 0;
  overflow: hidden;
  background: var(--teal);
  box-shadow: 0 34px 90px rgba(29,41,43,.18);
  color: #f3ecdf;
  animation: heroArtboardReveal 1.75s .28s var(--ease-cinematic) both;
}

.hero-reel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 25%, rgba(143,71,63,.88) 0 13%, rgba(143,71,63,.24) 13.2% 26%, transparent 26.3%),
    linear-gradient(138deg, #183033 0%, #213c3f 58%, #172c2f 100%);
}

.hero-reel::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.85%, rgba(244,240,232,.16) 50%, transparent 50.15%);
  transform: rotate(-24deg) scale(1.5);
}

.hero-reel::after {
  content: '';
  position: absolute;
  z-index: 1;
  right: 5.5%;
  top: 8%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(244,240,232,.24);
  border-radius: 50%;
}

.hero-reel__grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(244,240,232,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(244,240,232,.11) 1px, transparent 1px);
  background-size: 12.5% 14.285%;
}

.hero-reel [data-depth] {
  --depth-y: 0px;
  position: absolute;
  z-index: 3;
  transform: translate3d(var(--board-x),calc(var(--board-y) + var(--depth-y)),0);
  transition: transform .28s var(--ease);
}

.hero-reel__kicker {
  top: 5.5%;
  left: 5.5%;
  font-size: 7px;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.hero-reel__kicker span { color: #d4b28f; }

.hero-reel__name {
  top: 11%;
  left: 5.2%;
  font-family: var(--serif);
  font-size: clamp(105px,10vw,174px);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .8;
}

.hero-reel__name span { color: #d6a283; }

.hero-reel__thesis {
  left: 7%;
  top: 43%;
  font-family: var(--serif);
  font-size: clamp(30px,3.25vw,54px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .86;
}

.hero-reel__thesis em { color: #d9c4a4; }

.hero-reel__orbit {
  top: 14%;
  right: 8%;
  width: 39%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,240,232,.4);
  border-radius: 50%;
  transform-origin: center;
  animation: orbitTurn 22s linear infinite;
}

.hero-reel__orbit::before,
.hero-reel__orbit::after {
  content: '';
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(244,240,232,.2);
  border-radius: 50%;
}

.hero-reel__orbit::after { inset: 42%; background: #d0bea0; border: 0; }
.hero-reel__orbit i { position: absolute; width: 115%; height: 1px; background: rgba(244,240,232,.35); transform: rotate(35deg); }
.hero-reel__orbit i:nth-child(2) { transform: rotate(-55deg); }
.hero-reel__orbit b { position: absolute; z-index: 2; color: var(--teal); font-size: 6px; font-weight: 500; letter-spacing: .22em; }

.hero-reel__fields {
  left: 5.5%;
  right: 5.5%;
  bottom: 6.5%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(244,240,232,.3);
  list-style: none;
}

.hero-reel__fields li {
  min-height: 72px;
  padding: 12px 10px 0;
  display: grid;
  grid-template-columns: 25px 1fr;
  border-right: 1px solid rgba(244,240,232,.18);
  font-size: 8px;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-reel__fields li:first-child { padding-left: 0; }
.hero-reel__fields li:last-child { border-right: 0; padding-right: 0; }
.hero-reel__fields b { color: #d7a280; font-size: 7px; font-weight: 400; }

.hero-reel__code {
  position: absolute;
  z-index: 3;
  right: 5.5%;
  bottom: 27%;
  color: rgba(244,240,232,.52);
  font-size: 6px;
  letter-spacing: .2em;
  line-height: 1.8;
  text-align: right;
}

.motion-type {
  translate: var(--text-shift, 0px) 0;
  transform: skewX(var(--type-skew, 0deg));
  filter: blur(var(--motion-blur, 0px));
  text-shadow: var(--type-echo, 0px) 0 rgba(143,71,63,.14);
  transition: translate .12s linear, transform .12s linear, filter .12s linear;
  will-change: translate, transform;
}

.cinematic-frame {
  --kinetic-y: 0px;
  --kinetic-skew: 0deg;
  --kinetic-scale: 1;
  isolation: isolate;
  transform: translate3d(0,var(--kinetic-y),0) skewY(var(--kinetic-skew)) scale(var(--kinetic-scale));
  transform-origin: center;
  transition: transform .13s linear;
  will-change: transform;
}

.motion-streak {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: -56%;
  width: 44%;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), var(--beige), transparent);
  box-shadow: 0 0 12px rgba(255,255,255,.78), 0 0 35px rgba(143,71,63,.25);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-24deg);
}

.is-loaded .hero-artboard .motion-streak { animation: frameStreak 1.05s 1.35s var(--ease) both; }
.image-reveal.is-visible .motion-streak,
.reveal.is-visible .motion-streak { animation: frameStreak .95s .12s var(--ease) both; }

.film-caption {
  position: absolute;
  z-index: 8;
  left: 2.5%;
  right: 2.5%;
  bottom: 2.3%;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.84);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .06em;
  mix-blend-mode: difference;
  pointer-events: none;
}

.film-caption b { font-family: var(--sans); font-size: 7px; font-weight: 400; letter-spacing: .18em; }

.feature-media--digital {
  background: #d9ded9;
}

.digital-magazine {
  --board-x: 0px;
  --board-y: 0px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e6e1, #cbd5d0);
  perspective: 1200px;
}

.digital-grid {
  position: absolute;
  inset: 0;
  opacity: .52;
  background-image: linear-gradient(rgba(29,41,43,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(29,41,43,.12) 1px, transparent 1px);
  background-size: 9.09% 9.09%;
  animation: gridDrift 18s linear infinite;
}

.digital-word {
  position: absolute;
  z-index: 1;
  left: 6%;
  top: 7%;
  color: rgba(29,41,43,.15);
  font-family: var(--serif);
  font-size: clamp(66px, 8vw, 132px);
  letter-spacing: -.07em;
  line-height: .72;
}

.digital-word em { color: rgba(143,71,63,.2); }

.ui-sheet,
.code-note,
.color-note {
  --depth-y: 0px;
  position: absolute;
  transform: translate3d(var(--board-x), calc(var(--board-y) + var(--depth-y)), 0);
  transition: transform .28s var(--ease), box-shadow .45s;
  box-shadow: 0 28px 70px rgba(29,41,43,.13);
}

.ui-sheet--main {
  z-index: 2;
  left: 13%;
  top: 24%;
  width: 57%;
  height: 58%;
  padding: 6%;
  background: #f7f3eb;
}

.ui-bar { width: 38%; height: 3px; background: var(--wine); }
.ui-hero-block { width: 100%; height: 35%; margin-top: 8%; background: var(--teal); }
.ui-columns { height: 24%; margin-top: 5%; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 4%; }
.ui-columns i { background: #d3dcd6; }
.ui-columns i:nth-child(2) { background: #c8b996; }
.ui-columns i:nth-child(3) { background: #9c554d; }
.ui-lines { margin-top: 7%; display: grid; gap: 6px; }
.ui-lines i { width: 65%; height: 1px; background: rgba(29,41,43,.22); }
.ui-lines i:nth-child(2) { width: 88%; }
.ui-lines i:nth-child(3) { width: 45%; }

.ui-sheet--mobile {
  z-index: 3;
  right: 9%;
  top: 15%;
  width: 19%;
  height: 48%;
  padding: 14% 12%;
  border: 7px solid #26383a;
  border-radius: 22px;
  background: #f7f3eb;
}

.ui-sheet--mobile i { display: block; height: 12%; margin-top: 14%; background: #cbd5d0; }
.ui-sheet--mobile i:nth-of-type(2) { background: #8f473f; }
.mobile-dot { width: 7px; height: 7px; margin: 0 auto 18%; border-radius: 50%; background: var(--teal); }

.code-note {
  z-index: 4;
  right: 7%;
  bottom: 8%;
  width: 34%;
  padding: 22px;
  display: grid;
  gap: 8px;
  background: var(--teal);
  color: #f5f0e7;
}

.code-note span, .code-note small { font-size: 7px; letter-spacing: .18em; }
.code-note b { font-family: var(--serif); font-size: clamp(18px,2vw,30px); font-weight: 300; }

.color-note {
  z-index: 4;
  left: 6%;
  bottom: 8%;
  width: 27%;
  padding: 12px;
  display: flex;
  gap: 7px;
  background: #f7f3eb;
}

.color-note i { display: block; width: 25%; aspect-ratio: 1; background: var(--teal); }
.color-note i:nth-child(2) { background: var(--wine); }
.color-note i:nth-child(3) { background: var(--beige); }
.color-note i:nth-child(4) { background: var(--sage); }

@keyframes gridDrift {
  to { background-position: 100px 100px; }
}

@keyframes editFlash {
  0% { opacity: 0; }
  16% { opacity: .88; }
  100% { opacity: 0; }
}

@keyframes cutLineRight {
  0% { transform: translateX(0) scaleX(.2); opacity: 0; }
  16% { opacity: 1; }
  100% { transform: translateX(154vw) scaleX(1.8); opacity: 0; }
}

@keyframes cutLineLeft {
  0% { transform: translateX(0) scaleX(.2); opacity: 0; }
  16% { opacity: 1; }
  100% { transform: translateX(-154vw) scaleX(1.8); opacity: 0; }
}

@keyframes cutLabel {
  0%,100% { opacity: 0; transform: translateX(15px); }
  24%,62% { opacity: .72; transform: translateX(0); }
}

@keyframes frameStreak {
  0% { left: -56%; opacity: 0; }
  12% { opacity: .78; }
  72% { opacity: .4; }
  100% { left: 112%; opacity: 0; }
}

@media (max-width: 980px) {
  .hero-artboard { width: 61vw; right: 2%; }
}

@media (max-width: 720px) {
  .hero { min-height: 850px; }
  .hero-artboard { top: 72px; right: -12%; width: 116%; height: 48%; opacity: .94; gap: 6px; }
  .hero-artboard::before, .artboard-caption { display: none; }
  .hero-overlay { z-index: 1; background: linear-gradient(0deg, var(--paper) 16%, rgba(244,240,232,.9) 52%, rgba(244,240,232,.08)); }
  .hero-content { z-index: 2; padding-bottom: 70px; }
  .art-panel { padding: 11px; }
  .art-panel > span { font-size: 6px; }
  .art-panel--strategy strong { font-size: 34px; }
  .art-panel--muu > span { top: 11px; left: 11px; }
  .hero-reel__name { top: 14%; font-size: 100px; }
  .hero-reel__thesis { top: 47%; font-size: 31px; }
  .hero-reel__orbit { top: 12%; right: 8%; width: 36%; }
  .hero-reel__fields li { min-height: 58px; grid-template-columns: 18px 1fr; font-size: 6px; }
  .hero-reel__code { display: none; }
  .digital-word { font-size: 64px; }
  .ui-sheet--main { left: 8%; width: 66%; }
  .ui-sheet--mobile { right: 5%; width: 24%; }
  .code-note { width: 46%; padding: 15px; }
  .film-caption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-type { translate: 0 0 !important; }
  .motion-type { transform: none !important; filter: none !important; text-shadow: none !important; }
  .cinematic-frame { transform: none !important; }
  .motion-streak, .edit-cut { display: none !important; }
  .hero-artboard { animation: none !important; opacity: 1; clip-path: none; }
  .hero-reel__orbit { animation: none !important; }
  .image-reveal > img, .image-reveal > .digital-magazine { scale: 1 !important; animation: none !important; }
  .art-panel, .ui-sheet, .code-note, .color-note { transform: none !important; }
  .digital-grid { animation: none; }
}
