* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;

    /* outline: solid 1px rgba(0,0,0,.2); */
    /* will-change: all; */
}

html {
    /* font-size: 9px; */
    font-size: 11px;
}

:root {
    --border-radius: 12px;
}

body {
    overflow-x: hidden;
    font-family: 'Scope';
    font-variation-settings: "wght" 60, "wdth" 500;
    font-size: 2rem;
    line-height: 1.2;

    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);

    background-color: #fff;
    /* background: linear-gradient(180deg, #fff 50rem, #d4d6dd 68rem); */
}

.body--work {
    background-color: #d4d6dd;
}

.body--about {
}

.body--about.body--color1 {
    background-color: rgba(255,198,228,.6);
}

.body--about.body--color2 {
    background-color: rgba(255,227,43,.3);
}

.body--about.body--color3 {
    background-color: rgba(102, 153, 255, .6);
}

.body--about.body--color4 {
    background-color: rgba(53,2,255,.2);
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,.4);
    text-decoration-thickness: .075em;
    transition: all .8s cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover {
    color: rgba(0,0,0,.4);
    /* color: rgba(53,2,255,1);
    text-decoration-color: rgba(53,2,255,1); */
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

::selection {
    /* color: rgba(53,2,255,1); */
    color: #fff;
    background: rgba(53,2,255,1);
    /* background: #cafd03; */
}

a:focus, button:focus {
    outline: none;
}

a:focus-visible, button:focus-visible {
    outline: solid 3px rgba(0, 255, 106, 1);
    transition: outline 0s !important;
}

a:active, button:active {
}



/* fonts */
@font-face {
    font-family: 'Scope';
    src: url('../fonts/scope-variable.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Signifier';
    src: url('../fonts/signifier-light.woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Signifier';
    src: url('../fonts/signifier-light-italic.woff2');
    font-style: italic;
    font-display: swap;
}


/* hero */
.hero {
    padding-left: 9.6vw;
    /* margin-top: 19rem; */
    padding-top: 19rem;
    margin-bottom: 14rem;
}

.hero-title {
    font-size: 4rem;
    font-size: 3.8rem;
    line-height: 1;
    font-family: 'Signifier';
    font-style: italic;
    letter-spacing: .02em;
}

.hero-title-firstline {
    display: block;
}

.hero span {
    display: inline-block;
}

.hero span:nth-of-type(3) {
    text-indent: 12rem;
}

.hero-title strong {
    font-family: 'Scope';
    text-transform: uppercase;
    /* font-size: 3.8rem; */
    font-size: inherit;
    font-variation-settings: "wght" 70, "wdth" 490;
    font-style: normal;
}

.hero-text {
    font-size: 2rem;
    line-height: 1.2;
    /* margin-top: 4rem; */
    margin-top: 1.2em;
    /* margin-top: 1.5em; */
    /* margin-top: 1.8em; */
    padding-left: 5rem;
    text-indent: 7rem;
    max-width: 56ch;

    font-family: 'Signifier';
    font-style: normal;

    /* outline: solid 1px red; */
}



/* work */
.work {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 0 16px;
    gap: 16px;
}

.work-item {
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
    object-fit: cover;
    cursor: pointer;
    appearance: none;
    display: block;
    border: none;
    background: none;
    border-radius: var(--border-radius);

    border: solid .5px #d4d6dd;
}

.work-item-video {
    background: transparent;
    aspect-ratio: 16 / 9;
    border-radius: inherit;
    display: block;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    
    position: relative;
    overflow: hidden;
}

.work-item-video--loading {
    background: rgba(53,2,255,.1);
}

.work-item-video:after {
    content: '';
    display: block;
    height: 200%;
    width: 100%;
    background: linear-gradient(180deg, rgba(53,2,255,0) 0%, rgba(53,2,255,.1) 50%, rgba(53,2,255,0) 100%);
    animation: loadingvideo 1s linear infinite;
    position: absolute;
    top: 0;
    z-index: -1;
}

.work-item-video--loaded:after {
    display: none;
}

@keyframes loadingvideo {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(50%);
    }
}

.work-item-video video, .work-item-video img {
    display: block;
    width: 100%;
    /* height: 100; */
    border-radius: inherit;
    position: absolute;
    top: 0;
    z-index: 1;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-item-video--loading video {
    opacity: 0;
}

.work-item-video--loaded video {
    opacity: 1;
}

.work-item:hover {
  transform: scale(1.02);
}

.work:has(.work-item:hover) .work-item:not(:hover) {
}

.work-item[data-span="1"]:hover {
    transform: scale(1.04);
}

.work-showmore {
    grid-column: span 3;
    justify-items: center;
    align-items: center;
    /* outline: solid 1px blue; */
    display: grid;
}

.work-showmore-btn {
    display: block;
    cursor: pointer;
    appearance: none;
    border-radius: var(--border-radius);
    color: #481aff;
    color: rgba(53,2,255,1);
    color: rgba(53,2,255,.8);
    border: solid 1px rgba(53,2,255,.2);
    background: rgba(255,255,255,.3);
    /* padding: 4px 12px; */
    /* padding: 6px 18px; */
    padding: 6px 14px;

    text-transform: uppercase;
    font-size: 14px;
    /* font-size: 16px; */
    /* font-size: 18px; */
    letter-spacing: .5px;
    font-variation-settings: "wght" 70, "wdth" 490;

    /* color: rgba(0,0,0,.6); */
    /* border: solid 1px rgba(0,0,0,.1); */

    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-showmore-btn:hover {
    border: solid 1px rgba(53,2,255,.4);
    background: rgba(255,255,255,.6);
    color: rgba(53,2,255,1);
    transform: scale(1.04);
}

.work-expansion {
    /* outline: solid 1px red; */
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 3;
    gap: 16px;
    transition: none;

    display: none;
}

.work-expansion--expanded {
    display: grid;

    transition: all 1.6s cubic-bezier(0.22, 1, 0.36, 1), opacity .6s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-expansion--collapse {
    margin-top: -100%;
    opacity: 0;
}

@keyframes videopop {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.work-expansion .work-item {
    transform: scale(0);
    opacity: 0;
    animation: videopop .2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.captions {
    pointer-events: none;
}

.captions-item {
    position: fixed;
    bottom: 0;
    transform: scale(0);
    z-index: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.captions-item--visible {
    transform: scale(1);
    opacity: 1;
    transition: all .1s .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.captions-item-box {
    text-align: center;
    line-height: 120%;
    color: #fff;
    font-size: 15px;
    padding: .4em 1em .45em 1em;
    letter-spacing: .03em;
    margin: 0 8px 20px 8px;
    background: rgba(0,0,0,.3);
    border-radius: var(--border-radius);
    pointer-events: auto;
}

.captions-item a {
    text-decoration-color: rgba(250,250,250,.6);
    color: rgba(250,250,250,.6);
    display: inline-block;
    text-underline-offset: .2em;
    text-decoration: none;

    padding: 6px;
    margin: -6px;
}

.captions-item a:hover, .captions-item a:focus {
    color: rgba(250,250,250,1);
    text-decoration-color: rgba(250,250,250,1);   
}

.captions-item a:after {
    content: ' ↗︎';
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

.captions-item:has(a) span:after {
    content: ' • ';
    color: rgba(250,250,250,.6);
    width: 3ch;
    display: inline-block;
}






/* work detail */

.work-item--zoomed {
    position: relative;
    z-index: 400;
}

.body--noscroll {
    overflow: hidden;
}

.main {
    transition: transform .3s cubic-bezier(0.61, 1, 0.88, 1), transform-origin .3s .3s cubic-bezier(0.61, 1, 0.88, 1);
    /* will-change: transform; */
}

.main--workdetail {
    transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1);
}

.main--workdetail .work-item:not(.work-item--zoomed) {
    filter: blur(10px);
    opacity: .3 !important;
}

.main--workdetail + .nav {
    transform: translateY(200%) translateX(-50%);
    transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.main--workdetail + .nav + .blur {
    transform: translateY(200%);
    transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.body--workdetail {
}

.hero, .contact {
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.body--workdetail .hero, .body--workdetail .contact, .body--workdetail .hero, .body--workdetail .work-showmore, .body--workdetail .footer {
    filter: blur(10px);
    opacity: .3;
}




/* general close */
.generalclose {
    position: fixed;
    width: 500vw;
    height: 500vh;
    top: -250vh;
    left: -250vw;
    z-index: 400;
    background: rgba(0, 0, 0, 0);
    display: none;
}

.body--workdetail .generalclose {
    cursor: none;
}

.generalclose--visible {
    display: block;
}

.generalclose:after {
    display: none;
    content: 'close';
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    letter-spacing: .04em;
    font-size: 14px;
    color: #fff;
    background: rgba(0,0,0,1);
    padding: 5px 14px;
    border-radius: var(--border-radius);
    outline: solid 3px rgba(0, 255, 106, 1);
}

.generalclose:focus-visible {
    background: rgba(0,0,0,.6);
}

.generalclose:focus-visible:after {
    display: block;
}

.closecursor {
    position: absolute;

    /* font-size: 15px;
    padding: .4em 1em .45em 1em;
    letter-spacing: .03em; */
    /* border-radius: var(--border-radius); */
    
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    border-radius: 8px;
    border-radius: var(--border-radius);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.3);
    pointer-events: none; 
    transform: translate(-50%, -50%) scale(0);
    z-index: 9999;
    opacity: 0;
    transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.closecursor--visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (any-pointer: coarse) {
    .generalclose:after {
        display: block;
        outline: none;
    }

    .closecursor {
        display: none;
    }
}



/* contact */

.contact {
    padding-left: 9.6vw;
    margin-top: 14rem;
    margin-bottom: 24rem;

    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: .02em;

    font-size: 3.8rem;
    font-variation-settings: "wght" 70, "wdth" 490;
}

.contact-text {
}

.contact-btn {
}




/* nav */

.nav {
    position: fixed;
    /* width: 100%; */
    bottom: 0;
    /* margin: 0 20px 20px 20px; */
    margin: 0 0 20px 0;
    border-radius: var(--border-radius);

    font-size: 17px;
    padding: .22em;

    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    z-index: 500;

    pointer-events: none;

    background: #fff;
    box-shadow: rgba(53,2,255,.1) 0px 1px 4px 2px;

    height: auto;
    max-height: 400px;

    transition: transform .2s .4s cubic-bezier(0.22, 1, 0.36, 1), all .14s cubic-bezier(0.22, 1, 0.36, 1);
    /* transition: transform .2s .4s cubic-bezier(0.22, 1, 0.36, 1), all .14s cubic-bezier(0.22, 1, 0.36, 1), max-height 1s; */

    /* width: 39.1rem; */
}

.nav > ul {
    display: flex;
    list-style: none;
    width: 100%;
    flex-shrink: 0;
    gap: .175em;

    order: 0;
}

.blur {
    backdrop-filter: blur(10px);
    /* background: rgba(250,250,250,.3); */
    background: rgba(53,2,255,.3);
    /* filter: blur(40px); */
    /* filter: blur(10px); */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;

    width: 100%;
    height: 8rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 400;

    pointer-events: none;

    transition: transform .2s .4s cubic-bezier(0.22, 1, 0.36, 1), all .14s cubic-bezier(0.22, 1, 0.36, 1);
}

li.nav-item a {
    display: block;
    user-select: none;
    pointer-events: auto;
    text-decoration: none;
    line-height: 120%;
    border-radius: calc(var(--border-radius) - .22em);
    padding: .33em .65em;
    text-transform: uppercase;
    font-variation-settings: "wght" 80, "wdth" 500;
    letter-spacing: .02em;
    white-space: nowrap;

    /* transition: transform .2s .4s cubic-bezier(0.22, 1, 0.36, 1), all .14s cubic-bezier(0.22, 1, 0.36, 1); */

    color: rgba(53,2,255,1);
}

li.nav-item a:hover {
    background: #eee;
    background: rgba(53,2,255,.1);
}

li.nav-item--current a, li.nav-item--current a:hover {
    background: rgba(53,2,255,.9);
    color: #fff;
}

li.nav-item--drop {
}

li.nav-item--drop.nav-item--current a {
    background: rgba(53,2,255,.1);
    color: rgba(53,2,255,1);
}

li.nav-item--drop a:after {
    content: ">";
    position: relative;
    line-height: 0;
    font-variation-settings: "wght" 60, "wdth" 500;
    display: inline-block;
    width: 1ch;
    height: 1ch;
    line-height: .6ch;
    transition: all .1s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 1.4em;
    right: -.145em;
    bottom: -.015em;
    /* transform: rotate(-90deg); */
}

li.nav-item--drop.nav-item--current a:after {
    transform: rotate(90deg);
}



/* dropdown menus */
.dropdown {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    user-select: none;

    transition: max-height .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s cubic-bezier(0.22, 1, 0.36, 1);

    order: -1;
}

.dropdown--visible {
    /* display: block; */
    /* height: auto; */
    max-height: 400px;
    opacity: 1;
}

.dropdown--visible a {
    pointer-events: auto;
}

.dropdown ul {
    list-style-type: none;
    margin-bottom: 1.2em;
}




.dropdown-iconlist {
    display: flex;
    flex-direction: column;
}

.dropdown-iconlist * {
}

.dropdown-iconlist li {
    width: 100%;
}


.dropdown-iconlist li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
    padding: .5em;
    /* padding: .4em .5em .5em .5em; */
    border-radius: calc(var(--border-radius) - .22em);
}

.dropdown-iconlist li a:hover {
    background: rgba(53,2,255,.1);
    color: rgba(53,2,255,1);
    text-indent: .25em;
}

.dropdown-iconlist li a img {
    display: block;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: calc(var(--border-radius) - .5em);
    width: 3.2em;
    height: 3.2em;
}

.dropdown-iconlist li a:hover img {
    transform: scale(.9);
}

.dropdown-iconlist li a div {
    display: block;
    margin-left: .95em;
    margin-top: -.15em;
    width: 100%;
}

.dropdown-iconlist li a div strong {
    display: block;
    font-variation-settings: "wght" 90, "wdth" 500;
    margin-bottom: .2em;
}

.dropdown-iconlist li a strong:after {
    content: '↗︎';
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    opacity: 0;
    /* margin-left: .4ch; */
    float: right;
    margin-top: -.45em;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-iconlist li a:hover strong:after {
    opacity: 1;
}

.dropdown-iconlist li a div em {
    display: block;
    font-family: 'Signifier';
    font-size: .95em;
    /* line-height: 1.4; */
}

.dropdown-textlist {
}

.dropdown-textlist li {
}

.dropdown-textlist li a {
    text-decoration: none;
    display: block;
    border-radius: calc(var(--border-radius) - .22em);
    padding: .27em .4em;
    text-transform: uppercase;
    font-variation-settings: "wght" 80, "wdth" 500;
    letter-spacing: .02em;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-textlist li a svg {
    height: .9em;
    width: .9em;
    margin-right: .3em;
    position: relative;
    top: .1em;
}

.dropdown-textlist li a:after {
    content: '↗︎';
    float: right;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    opacity: 0;
    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
    margin-right: .7em;
}

.dropdown-textlist li a:hover {
    background-color: rgba(53,2,255,.1);
    color: rgba(53,2,255,1);
    text-indent: .25em;
}

.dropdown-textlist li a:hover svg {
    fill: rgba(53,2,255,1);
}

.dropdown-textlist li a:hover:after {
    opacity: 1;
    margin-right: 0;
}

.dropdown li:has(a[href="https://x.com/jonaspelzer"]) {
    /* outline: solid 1px red; */
    cursor: not-allowed;
    pointer-events: auto;
}

.dropdown a[href="https://x.com/jonaspelzer"] {
    opacity: .5;
    pointer-events: none;
}

.dropdown a[href="https://x.com/jonaspelzer"] span {
    text-decoration: line-through;
}



/* footer */
.footer {
    height: 6rem;
    padding: 1rem;

    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;

    font-family: 'Signifier';
    font-size: 1.6rem;

    position: fixed;
    width: 100%;
    z-index: 500;
    left: 0;
    bottom: 0;

    transform: translateY(100%);

    transition: all .2s cubic-bezier(0.22, 1, 0.36, 1), all .14s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer em {
    font-style: italic;
}

.footer span {
    width: 4ch;
    text-align: center;
    font-size: 2.3rem;
    user-select: none;
}

.footer--movedup {
    transform: translateY(0);
}

.nav--movedup {
    transform: translateY(calc(-6rem + 20px)) translateX(-50%);
}



/* about page */

.about {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    padding: 0 16px;
    padding: 0 32px;
    padding: 0 40px;
    gap: 40px;
    gap: 64px;
    font-family: 'Signifier';
    /* font-size: 1.6rem; */
}

.about-text {
    grid-column: 1 / span 6;
    /* grid-column: 1 / span 5; */
    /* margin-bottom: 2.4em; */

    margin-top: 8em;
    max-width: 60ch;
}

.about-text+.about-listcol {
    margin-top: 4em;
}

.about-text p:not(:first-of-type) {
    /* text-indent: 12rem; */
    text-indent: 8rem;
}

.about-listcol {
    grid-column: span 3;
    font-size: 1.6rem;
    font-size: 1.4rem;
}

/* .about-text+.about-listcol {
    grid-column: 7 / span 3;
} */

.about h3 {
    margin-bottom: 1.2em;

    font-family: 'Scope';
    font-variation-settings: "wght" 70, "wdth" 500;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: .02em;
}

.about-listcol em {
    font-style: italic;
}

.about-listcol ul {
    list-style-type: none;
}

.about-listcol ul, .about-listcol p {
    margin-bottom: 2.4em;
}

/* ul.nowrap li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
} */

/* .about-listcol a {
    position: relative;
}

.about-listcol a:before {
    content: '↗︎';
    position: absolute;
    right: 0;
    display: block;
    margin-right: -2ch;
    outline: solid 1px blue;
} */

/* ul.nowrap li {
    width: 100%;
    display: inline-block   ;
    white-space: nowrap;
}

ul.nowrap li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    width: 100%;
}

ul.nowrap li:has(a):after {
    content: '↗︎';
} */

ul.nowrap {
    list-style: none;
    padding: 0;
}

ul.nowrap li a {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    padding-right: 1em;
}

ul.nowrap li a:after {
    content: "↗︎";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
}



/* page transition */

.pages {
    /* background: red; */
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.page {
    opacity: 1;
    /* transition: all .4s cubic-bezier(0.22, 1, 0.36, 1); */
    transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
    grid-row: 1;
    grid-column: 1;
    transform: scale(1);
}

h2 {
    position: absolute;
    pointer-events: none;
    left: -100vw;
    /* visibility: hidden; */
}

.page--hidden {
    /* opacity: 0; */
    /* opacity: .15; */
    /* opacity: .1; */
    opacity: .08;
    z-index: -1;
    pointer-events: none;
    /* transform: scale(.96); */
    /* transform: scale(.94); */
    transform: scale(.92);
    filter: blur(10px);
    height: 0;
    /* filter: blur(20px); */
    /* display: none; */
}



@media (max-width: 1080px) {
    html {
        font-size: 8px;
    }
}

@media (max-width: 800px) {
    /* html {
        font-size: 8px;
    } */

    body {
        transition: none;
    }

    .hero {
        padding-left: 12px;
        padding-right: 12px;

        /* margin-top: 16rem; */
        padding-top: 16rem;
        margin-bottom: 11rem;
    }

    .hero-title {
        font-size: 7vw;
    }

    .hero-title span {
        display: block;
    }

    .hero-title span:nth-of-type(2) {
        text-indent: 32vw;
    }

    .hero-title span:nth-of-type(3) {
        text-indent: 10vw;
    }

    .hero-title span:nth-of-type(4) {
        text-align: right;
    }

    .hero-title br {
        display: none;
    }

    .hero-text {
        font-size: 2.2rem;
        /* margin-top: 4rem; */
        padding-left: 0;
        text-indent: 31.7vw;
        max-width: unset;
    }

    .work {
        grid-template-columns: repeat(2,1fr);
        padding: 0 8px;
        gap: 8px;
    }

    .work-expansion {
        grid-column: span 2;
        
        /* padding: 0 8px; */
        gap: 8px;
    }

    .work-expansion .work-item {
        animation: none;
        transform: scale(1);
        opacity: 1;
    }

    .work-showmore {
        grid-column: span 2;
    }    

    .captions-item {
    }

    .page--hidden {
        overflow: hidden;
    }

    .about {
        padding: 0 16px;
        width: 100%;
        gap: 0;
    }

    .about-text, .about-listcol {
        grid-column: 1 / span 12;
        width: 100%;
        margin-top: 0;
    }

    .about-text {
        margin-bottom: 2.4em;
    }

    ul.nowrap li a:after {
        font-size: 1.5em;
    }

    .nav {
        font-size: 15px;
        margin: 0 0 8px 0;
    }

    .captions-item-box {
        bottom: 0 8px 8px 8px;
    }
    
    .contact {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 11rem;
        margin-bottom: 16rem;    
        font-size: 6.4vw;
    }

    .nav--movedup {
        transform: translateY(calc(-6rem + 8px)) translateX(-50%);
    }

    .footer {
        font-size: 1.7rem;
        white-space: nowrap;
    }

    .footer span {
        width: 2.3ch;
        font-size: 2.1rem;
    }
    
}

@media (min-width: 1800px) {
    html {
        font-size: 13px;
    }
}

@media (min-width: 2400px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 3300px) {
    .main--workdetail {
        transform: none !important;
    }

    /* .work-item:not(.work-item--zoomed) { */
    .work-item {
        max-width: 100% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }

    .body--about .work {
        opacity: 0;
    }
}