:root {
    --paper: #f1eee8;
    --ink: #0b0b0b;
    --red: #761f26;
    --pink: #d9a0a2;
    --sun: #d9b546;
    --line: rgba(11, 11, 11, .22);
    --pad: clamp(18px, 3.2vw, 58px);
    --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --serif: "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--paper); background: var(--red); }

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

.intro { display: none; }
.js .intro { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; color: var(--paper); background: var(--ink); overflow: hidden; transition: clip-path .9s cubic-bezier(.77, 0, .18, 1); clip-path: inset(0 0 0 0); }
.js .intro.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.intro__grain { position: absolute; inset: -50%; opacity: .1; background-image: repeating-radial-gradient(circle at 33% 24%, rgba(255,255,255,.4) 0 1px, transparent 1px 4px); background-size: 9px 11px; animation: grain .22s steps(2) infinite; }
.intro__line { position: absolute; left: 50%; top: 0; width: 1px; height: 0; background: rgba(255,255,255,.4); animation: introLine 1.25s ease .1s forwards; }
.intro__eyebrow, .intro__counter { position: absolute; margin: 0; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.intro__eyebrow { top: 26px; left: var(--pad); }
.intro__counter { right: var(--pad); bottom: 26px; }
.intro__name { display: flex; flex-direction: column; font-size: clamp(70px, 16vw, 260px); line-height: .72; font-weight: 900; letter-spacing: -.075em; }
.intro__name span { opacity: 0; transform: translateY(120%); animation: introWord .7s cubic-bezier(.16,1,.3,1) forwards; }
.intro__name span:last-child { padding-left: .2em; color: transparent; -webkit-text-stroke: 1px var(--paper); animation-delay: .12s; }

.progress { position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 3px; pointer-events: none; }
.progress span { display: block; width: 100%; height: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; }
.cursor { position: fixed; z-index: 9000; left: 0; top: 0; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--red); pointer-events: none; opacity: 0; transform: translate(-50%,-50%) scale(.25); transition: opacity .2s, transform .25s cubic-bezier(.2,.8,.2,1); mix-blend-mode: difference; }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { transform: translate(-50%,-50%) scale(1); }
.cursor span { font-size: 9px; letter-spacing: .13em; opacity: 0; }
.cursor.is-active span { opacity: 1; }

.site-header { position: fixed; z-index: 500; top: 0; left: 0; right: 0; height: 76px; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: white; mix-blend-mode: difference; transition: transform .4s ease; }
.site-header.is-hidden { transform: translateY(-100%); }
.brand { justify-self: start; display: flex; flex-direction: column; font-weight: 900; font-size: 14px; line-height: .78; letter-spacing: -.04em; }
.brand span:last-child { padding-left: 7px; }
.header-meta { margin: 0; font-size: 9px; letter-spacing: .17em; }
.desktop-nav { justify-self: end; display: flex; gap: 28px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; justify-self: end; width: 48px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle i { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .35s; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 450; inset: 0; padding: 110px var(--pad) 40px; display: flex; flex-direction: column; justify-content: center; background: var(--red); color: var(--paper); clip-path: inset(0 0 100% 0); pointer-events: none; transition: clip-path .7s cubic-bezier(.77,0,.18,1); }
.mobile-menu.is-open { clip-path: inset(0); pointer-events: auto; }
.mobile-menu > a:not(.mobile-menu__social) { display: flex; align-items: baseline; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: clamp(60px, 17vw, 110px); font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.mobile-menu a span { font: 10px var(--sans); letter-spacing: .15em; }
.mobile-menu__social { margin-top: 40px; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--paper); isolation: isolate; }
.hero__type { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 74px 1vw 1vh; pointer-events: none; mix-blend-mode: difference; color: white; }
.hero__word { font-size: clamp(112px, 21.8vw, 420px); line-height: .72; font-weight: 900; letter-spacing: -.09em; white-space: nowrap; }
.hero__word--two { align-self: flex-end; }
.hero__copy { position: absolute; z-index: 5; left: var(--pad); top: auto; bottom: 8%; width: min(450px, 38vw); }
.kicker { margin: 0 0 22px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(44px, 4.65vw, 82px); line-height: .8; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; }
.hero h1 em { font-family: var(--serif); font-weight: 400; text-transform: none; }
.hero__intro { width: min(350px, 100%); margin: 25px 0 0; font-size: clamp(13px, 1.05vw, 17px); line-height: 1.45; }
.hero__visual { position: absolute; z-index: 1; right: 0; top: 0; width: 54%; height: 100%; margin: 0; overflow: hidden; }
.hero__visual picture, .hero__visual img { width: 100%; height: 100%; }
.hero__visual img { object-fit: cover; object-position: 50% 42%; transform: scale(1.07); animation: heroIn 1.65s cubic-bezier(.16,1,.3,1) .2s both; }
.hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(241,238,232,.4), transparent 20%, transparent 75%, rgba(0,0,0,.12)); }
.hero__seal { position: absolute; z-index: 6; right: calc(54% - 64px); top: 18%; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--red); animation: float 4s ease-in-out infinite; }
.hero__seal-ring { position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; animation: spin 18s linear infinite; }
.hero__seal-ring i { position: absolute; font-style: normal; font-size: 6px; letter-spacing: .12em; }
.hero__seal-ring i:nth-child(1) { left: 50%; top: 4px; transform: translateX(-50%); }
.hero__seal-ring i:nth-child(2) { right: 3px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.hero__seal-ring i:nth-child(3) { left: 50%; bottom: 4px; transform: translateX(-50%) rotate(180deg); }
.hero__seal-ring i:nth-child(4) { left: 3px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.hero__seal span { font: italic 34px var(--serif); }
.scroll-cue { position: absolute; z-index: 6; left: var(--pad); bottom: 28px; display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 58px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--ink); animation: cue 1.8s ease-in-out infinite; }
.hero__index { position: absolute; z-index: 6; right: var(--pad); bottom: 25px; margin: 0; color: white; font-size: 9px; letter-spacing: .16em; }

.marquee { position: relative; overflow: hidden; padding: 14px 0; color: var(--ink); background: var(--paper); border-block: 1px solid var(--ink); }
.marquee::after { content: ""; position: absolute; left: 0; bottom: 0; width: 18%; height: 2px; background: var(--red); animation: marqueeScan 3.2s cubic-bezier(.65,0,.35,1) infinite alternate; }
.marquee__track { display: flex; align-items: center; width: max-content; animation: marquee 14s linear infinite; will-change: transform; }
.marquee span { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; animation: marqueeLift 1.8s ease-in-out infinite alternate; }
.marquee span:nth-of-type(even) { animation-delay: -.9s; }
.marquee i { width: 5px; height: 5px; margin: 0 34px; border-radius: 50%; background: var(--red); animation: dotPulse 1.2s ease-in-out infinite alternate; }

.section-pad { padding-inline: var(--pad); }
.section-no { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.manifesto { position: relative; min-height: 100vh; padding-top: clamp(100px, 13vw, 220px); padding-bottom: clamp(100px, 13vw, 220px); border-bottom: 1px solid var(--line); overflow: hidden; }
.manifesto__lead { max-width: 1380px; margin: 8vh 0 10vh; font-size: clamp(52px, 9.4vw, 178px); line-height: .82; font-weight: 900; letter-spacing: -.07em; text-transform: uppercase; }
.manifesto__lead em { font-family: var(--serif); font-weight: 400; text-transform: none; color: var(--red); }
.manifesto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; width: min(800px, 70%); margin-left: auto; }
.manifesto__grid p { margin: 0; font-size: clamp(15px, 1.3vw, 21px); line-height: 1.5; }
.manifesto__mark { position: absolute; right: -2vw; bottom: -8vw; color: transparent; -webkit-text-stroke: 1px rgba(11,11,11,.13); font-size: 25vw; font-weight: 900; letter-spacing: -.1em; pointer-events: none; }

.story { position: relative; min-height: 110vh; overflow: hidden; }
.story--dark { color: var(--paper); background: #101010; }
.story__copy { position: absolute; z-index: 3; left: var(--pad); top: 12%; width: 38%; }
.story__copy p, .story__sun-copy p { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.story__copy h2, .story__sun-copy h2 { margin: 25px 0; font-size: clamp(64px, 9.5vw, 170px); line-height: .73; letter-spacing: -.075em; text-transform: uppercase; }
.story__copy h2 em, .story__sun-copy h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; }
.story__copy span, .story__sun-copy span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.story__image { position: absolute; margin: 0; overflow: hidden; }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__image--main { right: 5%; top: 9%; width: 48%; height: 82%; }
.story__image--detail { z-index: 4; left: 32%; bottom: 5%; width: 20%; height: 35%; border: 8px solid #101010; }
.story__scribble { position: absolute; z-index: 5; right: 2%; bottom: 4%; color: var(--red); font: italic clamp(38px, 7vw, 110px) var(--serif); transform: rotate(-8deg); }
.story--sun { min-height: 120vh; color: #fff; background: #8e6725; }
.story__wide { position: absolute; inset: 0; margin: 0; }
.story__wide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.25), transparent 48%, rgba(0,0,0,.08)); }
.story__wide img { width: 100%; height: 100%; object-fit: cover; }
.story__sun-copy { position: absolute; z-index: 3; left: var(--pad); top: 18%; }
.story__sun-detail { position: absolute; z-index: 3; right: var(--pad); bottom: 7%; width: min(26vw, 420px); margin: 0; border: 10px solid var(--paper); transform: rotate(3deg); }

.work { padding-top: clamp(100px, 12vw, 200px); padding-bottom: clamp(100px, 10vw, 160px); }
.work__heading { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 8vw; padding-bottom: 50px; border-bottom: 1px solid var(--ink); }
.work__heading h2 { margin: 24px 0 -12px; font-size: clamp(82px, 15vw, 250px); line-height: .7; letter-spacing: -.085em; text-transform: uppercase; }
.work__heading h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; color: var(--red); }
.work__heading > p { max-width: 360px; margin: 0; font-size: 13px; line-height: 1.5; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 22px 0 60px; }
.filters button { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 15px; background: transparent; cursor: pointer; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; transition: color .25s, background .25s, transform .25s; }
.filters button:hover { transform: translateY(-2px); }
.filters button.is-active { color: var(--paper); background: var(--ink); }
.filters span { opacity: .55; margin-left: 7px; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(18px, 2.4vw, 42px) clamp(12px, 1.8vw, 30px); align-items: start; }
.gallery-card { grid-column: span 4; transition: opacity .45s, transform .55s, display .55s allow-discrete; }
.gallery-card:nth-child(5n + 2), .gallery-card:nth-child(5n + 4) { margin-top: 9vw; }
.gallery-card--landscape { grid-column: span 8; }
.gallery-card.is-hidden { display: none; opacity: 0; transform: scale(.94); }
.gallery-card__button { width: 100%; padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; }
.gallery-card__media { position: relative; display: block; overflow: hidden; background: #d5d0c8; }
.gallery-card--portrait .gallery-card__media { aspect-ratio: 2 / 3; }
.gallery-card--landscape .gallery-card__media { aspect-ratio: 3 / 2; }
.gallery-card__media::after { content: "VIEW"; position: absolute; inset: 0; display: grid; place-items: center; color: white; background: rgba(118,31,38,.7); font-size: 11px; letter-spacing: .2em; opacity: 0; transition: opacity .4s; }
.gallery-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .4s; }
.gallery-card__button:hover img { transform: scale(1.045); filter: saturate(.75); }
.gallery-card__button:hover .gallery-card__media::after { opacity: 1; }
.gallery-card__meta { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.gallery-card__meta b { font-size: 8px; font-weight: 400; opacity: .6; }
.gallery-card__meta i { font-style: normal; font-size: 16px; }

.profile { position: relative; color: var(--paper); background: var(--red); overflow: hidden; }
.profile__ticker { border-block: 1px solid rgba(255,255,255,.4); overflow: hidden; }
.profile__ticker span { display: block; width: max-content; font-size: 13vw; line-height: .78; font-weight: 900; letter-spacing: -.08em; white-space: nowrap; animation: marquee 18s linear infinite reverse; }
.profile__inner { min-height: 100vh; padding-top: clamp(90px, 10vw, 160px); padding-bottom: clamp(100px, 12vw, 190px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw; align-items: center; }
.profile__copy h2 { margin: 32px 0; font-size: clamp(60px, 8vw, 135px); line-height: .78; letter-spacing: -.065em; text-transform: uppercase; }
.profile__copy h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; }
.profile__copy > p:not(.section-no) { width: min(480px, 90%); font-size: clamp(15px, 1.3vw, 21px); line-height: 1.5; }
.text-link { display: inline-flex; gap: 26px; align-items: center; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.profile__collage { position: relative; height: min(70vw, 850px); }
.profile__photo { position: absolute; margin: 0; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.profile__photo--a { left: 4%; top: 4%; width: 52%; height: 78%; transform: rotate(-4deg); }
.profile__photo--b { right: 1%; bottom: 1%; width: 48%; height: 68%; transform: rotate(5deg); }
.profile__stamp { position: absolute; z-index: 3; left: 43%; top: 43%; width: 120px; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid var(--paper); border-radius: 50%; text-align: center; font-size: 14px; font-weight: 900; line-height: .9; transform: rotate(-12deg); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid rgba(255,255,255,.4); }
.stats div { min-height: 130px; padding: 26px var(--pad); border-right: 1px solid rgba(255,255,255,.4); }
.stats div:last-child { border-right: 0; }
.stats dt { margin-bottom: 23px; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.stats dd { margin: 0; font: italic clamp(17px, 1.6vw, 27px) var(--serif); }
.stats a { text-decoration: underline; text-underline-offset: 4px; }

.contact { min-height: 100vh; padding: 80px var(--pad) 28px; display: flex; flex-direction: column; justify-content: space-between; color: var(--paper); background: var(--ink); }
.contact__top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 18px; }
.contact__top p { margin: 0; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact h2 { margin: clamp(70px, 11vw, 170px) 0; font-size: clamp(62px, 11vw, 190px); line-height: .75; letter-spacing: -.075em; text-transform: uppercase; }
.contact h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; color: var(--pink); }
.contact__actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.35); }
.contact__actions a { min-height: 150px; padding: 28px 0; display: flex; align-items: flex-end; justify-content: space-between; font-size: clamp(28px, 4vw, 66px); font-weight: 900; letter-spacing: -.045em; }
.contact__actions a:first-child { padding-right: 30px; border-right: 1px solid rgba(255,255,255,.35); }
.contact__actions a:last-child { padding-left: 30px; }
.contact__actions span { font-size: .6em; font-weight: 400; }
.footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.35); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer p { margin: 0; }

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; color: white; background: rgba(5,5,5,.96); opacity: 0; transition: opacity .4s, display .4s allow-discrete; }
.lightbox[open] { display: grid; opacity: 1; grid-template-columns: 90px 1fr 90px; grid-template-rows: 80px 1fr 70px; }
@starting-style { .lightbox[open] { opacity: 0; } }
.lightbox::backdrop { background: rgba(0,0,0,.75); }
.lightbox__close { grid-column: 3; justify-self: center; align-self: center; border: 0; color: white; background: transparent; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.lightbox__stage { grid-column: 2; grid-row: 2; min-height: 0; display: grid; place-items: center; }
.lightbox__stage img { width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.lightbox__nav { grid-row: 2; border: 0; color: white; background: transparent; font-size: 28px; cursor: pointer; }
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }
.lightbox__caption { grid-column: 2; grid-row: 3; display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(45px); transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-image { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s cubic-bezier(.77,0,.18,1); }
.reveal-image.is-visible { clip-path: inset(0); }
.reveal-text { opacity: 0; transform: translateY(.45em); transition: opacity .8s ease, transform 1s cubic-bezier(.16,1,.3,1); }
.reveal-text.is-visible { opacity: 1; transform: none; }

@keyframes introWord { to { opacity: 1; transform: none; } }
@keyframes introLine { to { height: 100%; } }
@keyframes heroIn { from { transform: scale(1.22); filter: grayscale(1); } to { transform: scale(1.07); filter: none; } }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(2%,-3%); } 50% { transform: translate(-3%,2%); } 75% { transform: translate(3%,4%); } 100% { transform: translate(-2%,-2%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px) rotate(3deg); } }
@keyframes cue { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marqueeScan { from { transform: translateX(-20vw); } to { transform: translateX(102vw); } }
@keyframes marqueeLift { to { transform: translateY(-2px); } }
@keyframes dotPulse { to { transform: scale(1.65); opacity: .45; } }

@media (max-width: 900px) {
    .site-header { grid-template-columns: 1fr auto; }
    .header-meta, .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .hero__type { padding-top: 110px; }
    .hero__word { font-size: 24vw; }
    .hero__copy { top: auto; bottom: 7%; width: 43%; }
    .hero__visual { width: 60%; }
    .hero__seal { right: calc(60% - 50px); width: 100px; height: 100px; }
    .manifesto__grid { width: 85%; }
    .story { min-height: 900px; }
    .story__image--main { width: 57%; right: 0; }
    .story__image--detail { left: 24%; width: 28%; }
    .gallery-card { grid-column: span 6; }
    .gallery-card--landscape { grid-column: span 12; }
    .profile__inner { grid-template-columns: 1fr; }
    .profile__collage { height: 105vw; }
    .profile__copy > p:not(.section-no) { width: 75%; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stats div { border-bottom: 1px solid rgba(255,255,255,.4); }
    .contact__actions { grid-template-columns: 1fr; }
    .contact__actions a:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
    .contact__actions a:last-child { padding-left: 0; }
}

@media (max-width: 640px) {
    :root { --pad: 18px; }
    .cursor { display: none; }
    .site-header { height: 66px; }
    .hero { min-height: 920px; }
    .hero__type { z-index: 3; justify-content: flex-start; gap: 3px; padding: 78px 12px 0; mix-blend-mode: difference; }
    .hero__word { font-size: 25vw; line-height: .72; }
    .hero__word--two { align-self: flex-start; margin-left: 16vw; }
    .hero__visual { top: 29%; width: 83%; height: 57%; }
    .hero__visual::before { content: ""; position: absolute; z-index: 2; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
    .hero__copy { top: auto; bottom: 25px; width: calc(100% - 36px); }
    .hero__copy .kicker, .hero__copy h1 { display: none; }
    .hero__intro { width: 75%; margin: 0; font-size: 13px; }
    .hero__seal { z-index: 5; right: 8px; top: 24%; width: 90px; height: 90px; }
    .hero__index { color: var(--ink); }
    .scroll-cue { display: none; }
    .marquee { padding-block: 10px; }
    .manifesto { min-height: auto; padding-block: 110px; }
    .manifesto__lead { margin: 60px 0 80px; font-size: 15vw; }
    .manifesto__grid { grid-template-columns: 1fr; width: 84%; gap: 30px; }
    .story { min-height: 860px; }
    .story__copy { top: 8%; width: 80%; }
    .story__copy h2 { font-size: 18vw; }
    .story__image--main { top: 32%; width: 78%; height: 60%; }
    .story__image--detail { left: 5%; bottom: 3%; width: 39%; height: 30%; border-width: 5px; }
    .story--sun { min-height: 900px; }
    .story__wide img { object-position: 56% center; }
    .story__sun-copy { top: 7%; }
    .story__sun-copy h2 { font-size: 22vw; }
    .story__sun-detail { width: 44vw; right: 12px; bottom: 3%; border-width: 6px; }
    .work { padding-top: 110px; }
    .work__heading { grid-template-columns: 1fr; gap: 35px; }
    .work__heading h2 { font-size: 25vw; }
    .filters { padding-bottom: 34px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .filters::-webkit-scrollbar { display: none; }
    .filters button { flex: 0 0 auto; }
    .gallery { grid-template-columns: 1fr 1fr; gap: 35px 10px; }
    .gallery-card, .gallery-card--landscape { grid-column: auto; margin-top: 0 !important; }
    .gallery-card--landscape { grid-column: 1 / -1; }
    .gallery-card:nth-child(3n + 2):not(.gallery-card--landscape) { margin-top: 54px !important; }
    .gallery-card__meta { grid-template-columns: 20px 1fr; font-size: 8px; }
    .gallery-card__meta i { display: none; }
    .profile__ticker span { font-size: 25vw; }
    .profile__inner { padding-top: 100px; }
    .profile__copy h2 { font-size: 17vw; }
    .profile__copy > p:not(.section-no) { width: 100%; }
    .profile__collage { height: 135vw; margin-top: 30px; }
    .profile__photo--a { left: 0; width: 60%; }
    .profile__photo--b { right: 0; width: 55%; }
    .profile__stamp { left: 38%; width: 90px; }
    .stats { grid-template-columns: 1fr; }
    .stats div { min-height: 100px; border-right: 0; }
    .contact { padding-top: 60px; }
    .contact__top p:last-child { display: none; }
    .contact h2 { margin-block: 110px; font-size: 17vw; }
    .contact__actions a { min-height: 110px; font-size: 9vw; }
    .footer { grid-template-columns: 1fr auto; }
    .footer p:nth-child(2) { display: none; }
    .lightbox[open] { grid-template-columns: 55px 1fr 55px; grid-template-rows: 65px 1fr 55px; }
    .lightbox__close { grid-column: 2 / 4; justify-self: end; padding-right: 16px; }
    .lightbox__caption { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .intro { display: none; }
    .reveal, .reveal-text { opacity: 1; transform: none; }
    .reveal-image { clip-path: none; }
}
