:root {
  --ink: #090909;
  --paper: #f1f0eb;
  --white: #fff;
  --grey: #9a9a94;
  --line: rgba(255,255,255,.2);
  --line-dark: rgba(9,9,9,.17);
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --pad: clamp(22px, 4vw, 72px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { color: var(--paper); background: var(--ink); }
.hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: white; color: black; padding: 12px 18px; }
.skip-link:focus { top: 12px; }

.grain { position: fixed; inset: -80%; z-index: 100; opacity: .055; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); animation: grain .22s steps(2) infinite; }
@keyframes grain { 0% { transform: translate3d(0,0,0); } 25% { transform: translate3d(2%,-1%,0); } 50% { transform: translate3d(-1%,2%,0); } 75% { transform: translate3d(1%,1%,0); } }

.focus-cursor { display: none; position: fixed; z-index: 120; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.85); pointer-events: none; mix-blend-mode: difference; transform: translate(-50%,-50%); transition: width .2s, height .2s, border-radius .2s; }
.focus-cursor::before, .focus-cursor::after { content: ""; position: absolute; background: white; }
.focus-cursor::before { width: 9px; height: 1px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.focus-cursor::after { width: 1px; height: 9px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.focus-cursor.is-hover { width: 62px; height: 62px; border-radius: 50%; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 80; height: 92px; padding: 18px var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: white; mix-blend-mode: difference; transition: transform .35s ease; }
.site-header.is-hidden { transform: translateY(-110%); }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font: 500 13px var(--mono); letter-spacing: -.08em; }
.brand-name { font-size: 11px; font-weight: 600; line-height: 1.05; letter-spacing: -.02em; text-transform: uppercase; }
.site-nav { display: flex; gap: 30px; font: 400 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { position: relative; padding: 10px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: currentColor; transition: right .25s; }
.site-nav a:hover::after { right: 0; }
.bag-button { justify-self: end; padding: 11px 13px; color: inherit; background: transparent; border: 1px solid currentColor; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.bag-button span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 7px; border-radius: 50%; background: currentColor; color: var(--ink); }
.menu-toggle { display: none; }

.hero { min-height: 100svh; position: relative; color: white; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.22) 50%, rgba(0,0,0,.48) 100%), linear-gradient(0deg, rgba(0,0,0,.45), transparent 45%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transform: scale(1.025); animation: hero-zoom 9s ease-out both; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-scan { position: absolute; z-index: 2; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.35); box-shadow: 0 0 16px white; animation: scan 5s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 19%; opacity: 0; } 15% { opacity: .65; } 80% { opacity: .25; } 95% { top: 83%; opacity: 0; } }
.viewfinder { position: absolute; z-index: 3; width: 42px; height: 42px; opacity: .7; }
.viewfinder::before, .viewfinder::after { content: ""; position: absolute; background: white; }
.viewfinder--tl { left: 5vw; top: 15vh; }.viewfinder--tr { right: 5vw; top: 15vh; transform: rotate(90deg); }.viewfinder--bl { left: 5vw; bottom: 9vh; transform: rotate(-90deg); }.viewfinder--br { right: 5vw; bottom: 9vh; transform: rotate(180deg); }
.viewfinder::before { width: 1px; height: 42px; }.viewfinder::after { width: 42px; height: 1px; }
.focus-dot { position: absolute; z-index: 3; right: 25%; top: 44%; width: 8px; height: 8px; border: 1px solid white; box-shadow: 0 0 0 7px rgba(255,255,255,.1); animation: focus-pulse 2.8s infinite; }
@keyframes focus-pulse { 50% { box-shadow: 0 0 0 16px rgba(255,255,255,0); } }
.hero-copy { position: relative; z-index: 5; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 140px var(--pad) 92px; }
.eyebrow { margin: 0 0 28px; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .16em; }
.display { margin: 0; max-width: 1100px; font: 400 clamp(63px, 10vw, 154px)/.79 var(--serif); letter-spacing: -.045em; }
.display span { display: block; }
.display-italic { font-style: italic; padding-left: 10vw; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: clamp(40px, 8vh, 110px); }
.hero-bottom > p { max-width: 430px; margin: 0; font-size: clamp(14px, 1.4vw, 19px); line-height: 1.55; }
.circle-link { width: 126px; height: 126px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background .25s, color .25s, transform .25s; }
.circle-link span { font: 400 10px/1.35 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.circle-link svg { width: 20px; fill: none; stroke: currentColor; }
.circle-link:hover { background: white; color: black; transform: rotate(-7deg); }
.hero-meta { position: absolute; z-index: 4; right: var(--pad); bottom: 24px; display: flex; gap: 22px; font: 400 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; opacity: .65; }

.section-pad { padding: clamp(84px, 12vw, 180px) var(--pad); }
.section-index { font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .13em; opacity: .62; margin-bottom: 34px; }
.headline { margin: 0; font: 400 clamp(58px, 8vw, 126px)/.88 var(--serif); letter-spacing: -.04em; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr); gap: clamp(50px, 10vw, 150px); align-items: end; }
.intro-copy { padding-bottom: 10px; }
.intro-copy p { margin: 0 0 22px; line-height: 1.7; font-size: 15px; }
.intro-copy .lead { font: 400 clamp(25px, 3vw, 42px)/1.05 var(--serif); }
.shutter-line { margin-top: clamp(70px, 10vw, 140px); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); min-height: 70px; display: flex; align-items: center; justify-content: space-between; font: 400 10px var(--mono); letter-spacing: .1em; }
.shutter-line i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); opacity: .25; }

.portfolio { background: var(--ink); color: white; }
.section-head { display: grid; grid-template-columns: 1.6fr .65fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.section-note { margin: 0; max-width: 480px; font-size: 14px; line-height: 1.7; }
.filter-bar { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 70px; overflow-x: auto; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-button { flex: 1; min-width: 150px; border: 0; border-right: 1px solid var(--line); padding: 22px 18px; background: transparent; color: inherit; text-align: left; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: background .2s, color .2s; }
.filter-button:last-child { border-right: 0; }
.filter-button span { float: right; opacity: .45; }
.filter-button.is-active, .filter-button:hover { color: var(--ink); background: var(--paper); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(22px, 3vw, 50px) clamp(16px, 2.4vw, 38px); }
.portfolio-card { grid-column: span 5; }
.portfolio-card:nth-child(4n+2), .portfolio-card:nth-child(4n+3) { grid-column: span 7; }
.portfolio-card:nth-child(4n+2) { padding-top: 12vw; }
.portfolio-card:nth-child(4n+4) { margin-top: -3vw; }
.portfolio-card[hidden] { display: none; }
.portfolio-image { position: relative; width: 100%; padding: 0; border: 0; overflow: hidden; background: #171717; color: white; cursor: pointer; }
.portfolio-image::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; transition: border .3s; }
.portfolio-image img { width: 100%; aspect-ratio: var(--ratio, 4/5); object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.portfolio-image:hover img { transform: scale(1.035); filter: grayscale(1) contrast(1.14); }
.portfolio-image:hover::after { border-color: rgba(255,255,255,.5); inset: 12px; }
.image-number, .open-mark { position: absolute; z-index: 2; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.image-number { top: 16px; left: 16px; padding: 7px 8px; background: white; color: black; }
.open-mark { right: 18px; bottom: 17px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.portfolio-image:hover .open-mark { opacity: 1; transform: none; }
.portfolio-caption { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding-top: 16px; }
.portfolio-caption h3 { margin: 4px 0 0; font: 400 clamp(25px, 2.6vw, 42px)/1 var(--serif); }
.portfolio-category, .portfolio-location { font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.portfolio-location { text-align: right; }
.portfolio-cta { margin-top: 110px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.portfolio-cta p { margin: 0; font: 400 clamp(26px, 3vw, 46px)/1 var(--serif); }
.text-link { font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid currentColor; padding-bottom: 7px; }

.time-lens { position: relative; isolation: isolate; padding: clamp(90px, 11vw, 170px) var(--pad) clamp(80px, 9vw, 140px); color: #f4f2ea; background: #080808; outline: 0; overflow: hidden; }
.time-lens::before { content: ""; position: absolute; z-index: -1; inset: -20% -10% auto 40%; height: 70%; background: radial-gradient(circle, rgba(143,26,21,.18), transparent 65%); pointer-events: none; }
.time-lens__heading { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); align-items: end; gap: clamp(40px, 8vw, 130px); margin-bottom: clamp(50px, 7vw, 90px); }
.time-lens__heading h2 { margin: 10px 0 0; font: 400 clamp(64px, 9vw, 142px)/.82 var(--serif); letter-spacing: -.045em; }
.time-lens__intro p { margin: 0 0 22px; max-width: 520px; font-size: 14px; line-height: 1.75; }
.time-lens__intro span, .time-lens__label-row, .time-lens__readout, .time-lens__category { font: 400 8px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.time-lens__intro span { opacity: .48; }
.time-lens__machine { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(310px,.62fr); max-width: 1640px; margin: 0 auto; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 28px 90px rgba(0,0,0,.42); }
.time-lens__stage { position: relative; min-width: 0; min-height: clamp(560px, 64vw, 880px); padding: 48px 26px 94px; overflow: hidden; background: #020202; border-right: 1px solid rgba(255,255,255,.18); }
.time-lens__readout { position: absolute; z-index: 5; inset: 18px 20px auto; display: flex; justify-content: space-between; gap: 20px; color: #9e241f; }
.time-lens__photo-mat { position: relative; width: 100%; height: 100%; min-height: 430px; margin: 0 auto; overflow: hidden; background: #0d0d0d; transition: width .55s cubic-bezier(.2,.7,.2,1), padding .55s, background .55s, transform .55s; }
.time-lens__photo-mat img { width: 100%; height: 100%; min-height: inherit; object-fit: contain; transition: filter .6s ease, transform .7s cubic-bezier(.2,.7,.2,1), opacity .25s; }
.time-lens__effect { position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 90px rgba(0,0,0,.28); transition: opacity .5s, box-shadow .5s; }
.time-lens__effect::before, .time-lens__effect::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s; }
.time-lens__effect::before { background: radial-gradient(circle at 50% 45%, transparent 38%, rgba(0,0,0,.78) 118%); }
.time-lens__effect::after { background-image: repeating-linear-gradient(87deg, transparent 0 11%, rgba(255,255,255,.12) 11.1%, transparent 11.3% 29%), radial-gradient(circle at 18% 30%, rgba(255,255,255,.35) 0 1px, transparent 2px), radial-gradient(circle at 73% 65%, rgba(0,0,0,.45) 0 1px, transparent 2px); background-size: auto, 51px 47px, 67px 61px; mix-blend-mode: screen; }
.time-lens__stage[data-era="box"] .time-lens__photo-mat img { filter: grayscale(1) sepia(.72) contrast(1.12) brightness(.86) blur(.45px); transform: scale(1.018); }
.time-lens__stage[data-era="box"] .time-lens__effect::before, .time-lens__stage[data-era="box"] .time-lens__effect::after { opacity: .72; }
.time-lens__stage[data-era="tlr"] .time-lens__photo-mat { width: min(82%, 680px); aspect-ratio: 1; min-height: 0; top: 50%; transform: translateY(-50%); }
.time-lens__stage[data-era="tlr"] .time-lens__photo-mat img { filter: grayscale(1) contrast(1.18) brightness(.92); object-fit: cover; }
.time-lens__stage[data-era="tlr"] .time-lens__effect::before { opacity: .66; }
.time-lens__stage[data-era="slr"] .time-lens__photo-mat img { filter: sepia(.18) saturate(.82) contrast(1.16) brightness(.95); transform: scale(1.008); }
.time-lens__stage[data-era="slr"] .time-lens__effect { box-shadow: inset 0 0 70px rgba(52,15,5,.38), 0 0 26px rgba(255,107,46,.12); }
.time-lens__stage[data-era="slr"] .time-lens__effect::after { opacity: .23; background-size: auto, 27px 29px, 43px 39px; }
.time-lens__stage[data-era="instant"] .time-lens__photo-mat { width: min(78%, 630px); height: 92%; min-height: 0; padding: 3% 3% 11%; top: 50%; transform: translateY(-50%) rotate(-.45deg); background: #e9e5d9; box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.time-lens__stage[data-era="instant"] .time-lens__photo-mat img { min-height: 0; object-fit: cover; filter: sepia(.1) saturate(.7) contrast(.91) brightness(1.05); }
.time-lens__stage[data-era="instant"] .time-lens__effect { inset: 3% 3% 11%; box-shadow: inset 0 0 50px rgba(40,22,10,.25); }
.time-lens__stage[data-era="instant"] .time-lens__effect::before { opacity: .4; }
.time-lens__stage[data-era="digital"] .time-lens__photo-mat img { filter: saturate(.72) contrast(1.2) brightness(1.02) hue-rotate(5deg); }
.time-lens__stage[data-era="digital"] .time-lens__effect { background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(120,174,190,.055) 3px 4px); box-shadow: inset 0 0 36px rgba(19,54,63,.25); }
.time-lens__stage[data-era="modern"] .time-lens__photo-mat img { filter: contrast(1.05) saturate(.95); }
.time-lens__stage.is-comparing .time-lens__photo-mat { width: 100%; height: 100%; min-height: 430px; padding: 0; top: auto; transform: none; background: #0d0d0d; box-shadow: none; }
.time-lens__stage.is-comparing .time-lens__photo-mat img { min-height: inherit; object-fit: contain; filter: none; transform: none; }
.time-lens__stage.is-comparing .time-lens__effect { opacity: 0; }
.time-lens__viewfinder { position: absolute; z-index: 4; inset: 63px 41px 112px; pointer-events: none; }
.time-lens__viewfinder i { position: absolute; width: 30px; height: 30px; border-color: rgba(255,255,255,.42); border-style: solid; }
.time-lens__viewfinder i:nth-child(1) { left: 0; top: 0; border-width: 1px 0 0 1px; }
.time-lens__viewfinder i:nth-child(2) { right: 0; top: 0; border-width: 1px 1px 0 0; }
.time-lens__viewfinder i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.time-lens__viewfinder i:nth-child(4) { left: 0; bottom: 0; border-width: 0 0 1px 1px; }
.time-lens__shutter { position: absolute; z-index: 12; inset: 40px 22px 88px; pointer-events: none; opacity: 0; background: #000; clip-path: circle(78% at 50% 50%); }
.time-lens__stage.is-firing .time-lens__shutter { animation: time-lens-shutter .7s cubic-bezier(.55,0,.15,1) both; }
@keyframes time-lens-shutter { 0% { opacity: 0; clip-path: circle(78% at 50% 50%); } 32% { opacity: 1; clip-path: circle(0 at 50% 50%); background: #000; } 45% { opacity: 1; clip-path: circle(0 at 50% 50%); background: white; } 54% { opacity: .92; clip-path: circle(92% at 50% 50%); background: white; } 100% { opacity: 0; clip-path: circle(92% at 50% 50%); background: #000; } }
.time-lens__caption { position: absolute; z-index: 6; left: 22px; right: 22px; bottom: 19px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.time-lens__caption span { display: block; margin-bottom: 4px; font: 400 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; opacity: .48; }
.time-lens__caption strong { font: 400 clamp(25px, 2.4vw, 40px)/1 var(--serif); }
.time-lens__compare { flex: 0 0 auto; padding: 10px 0 6px; color: inherit; background: transparent; border: 0; border-bottom: 1px solid currentColor; font: 400 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.time-lens__console { min-width: 0; padding: clamp(24px, 3vw, 45px); background: linear-gradient(145deg, #171717, #0d0d0d 62%); display: flex; flex-direction: column; }
.time-lens__selector, .time-lens__era-control { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.time-lens__era-control { padding-top: 28px; }
.time-lens__label-row { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 15px; opacity: .45; }
.time-lens__frames { display: flex; gap: 8px; padding-bottom: 5px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent; }
.time-lens__frame { position: relative; flex: 0 0 62px; width: 62px; height: 54px; padding: 3px; border: 1px solid rgba(255,255,255,.16); background: transparent; cursor: pointer; scroll-snap-align: center; }
.time-lens__frame::after { content: ""; position: absolute; inset: -1px; border: 1px solid transparent; transition: border .25s, inset .25s; }
.time-lens__frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(.9); opacity: .55; transition: filter .25s, opacity .25s; }
.time-lens__frame:hover img, .time-lens__frame.is-active img { filter: none; opacity: 1; }
.time-lens__frame.is-active::after { inset: -4px; border-color: #ae2a23; }
.time-lens__eras { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.time-lens__era { min-height: 56px; padding: 10px 12px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; color: inherit; background: transparent; border: 0; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); cursor: pointer; transition: color .2s, background .2s; }
.time-lens__era span { font: 400 8px var(--mono); opacity: .42; }
.time-lens__era strong { font: 400 9px var(--mono); letter-spacing: .07em; }
.time-lens__era:hover, .time-lens__era.is-active { color: #0a0a0a; background: #f0eee6; }
.time-lens__dial-row { display: grid; grid-template-columns: 46px 1fr 46px; gap: 18px; align-items: center; margin-top: 24px; }
.time-lens__arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: inherit; background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.time-lens__arrow:hover { color: #090909; background: #f0eee6; }
.time-lens__dial { position: relative; width: clamp(100px, 10vw, 138px); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: repeating-conic-gradient(from 0deg, #282828 0 3deg, #111 3deg 7deg); box-shadow: inset 0 0 0 11px #0c0c0c, 0 12px 30px rgba(0,0,0,.42); }
.time-lens__dial::before { content: ""; position: absolute; inset: 23%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: #151515; }
.time-lens__dial i { position: absolute; inset: 8%; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.time-lens__dial i::before { content: ""; position: absolute; left: calc(50% - 1px); top: 0; width: 2px; height: 17%; background: #b52a23; box-shadow: 0 0 8px rgba(181,42,35,.55); }
.time-lens__dial span { position: relative; z-index: 2; font: 500 10px var(--mono); letter-spacing: .08em; }
.time-lens[data-active-era="box"] .time-lens__dial i { transform: rotate(-125deg); }
.time-lens[data-active-era="tlr"] .time-lens__dial i { transform: rotate(-75deg); }
.time-lens[data-active-era="slr"] .time-lens__dial i { transform: rotate(-25deg); }
.time-lens[data-active-era="instant"] .time-lens__dial i { transform: rotate(25deg); }
.time-lens[data-active-era="digital"] .time-lens__dial i { transform: rotate(75deg); }
.time-lens[data-active-era="modern"] .time-lens__dial i { transform: rotate(125deg); }
.time-lens__era-copy { min-height: 170px; padding: 29px 0 24px; }
.time-lens__era-copy > span { color: #b52a23; font: 400 8px var(--mono); letter-spacing: .12em; }
.time-lens__era-copy h3 { margin: 12px 0 10px; font: 400 clamp(30px, 3vw, 46px)/.96 var(--serif); }
.time-lens__era-copy p { margin: 0; max-width: 440px; font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.58); }
.time-lens__print-link { margin-top: auto; min-height: 48px; padding: 14px 0; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font: 400 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.time-lens__print-link[hidden] { display: none; }
.time-lens__print-link span { color: #b52a23; }
.time-lens__footnote { margin: 22px 0 0; text-align: right; color: rgba(255,255,255,.38); font: 400 8px var(--mono); letter-spacing: .07em; text-transform: uppercase; }

.behind-frame { padding: clamp(92px, 11vw, 160px) var(--pad); color: var(--ink); background: #fbfbf9; outline: 0; }
.behind-frame__heading { max-width: 1640px; margin: 0 auto clamp(54px, 7vw, 92px); display: grid; grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); align-items: end; gap: clamp(40px, 9vw, 150px); }
.behind-frame__heading .section-index { margin-bottom: 28px; }
.behind-frame__heading h2 { max-width: 990px; margin: 0; font: 400 clamp(62px, 8.4vw, 132px)/.86 var(--serif); letter-spacing: -.045em; }
.behind-frame__heading > p { max-width: 460px; margin: 0 0 8px; font-size: 14px; line-height: 1.75; color: rgba(9,9,9,.62); }
.behind-frame__showcase { max-width: 1640px; min-height: clamp(620px, 62vw, 880px); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.55fr) minmax(340px,.65fr); background: #f2f2ef; border: 1px solid rgba(9,9,9,.1); border-radius: 20px; overflow: hidden; box-shadow: 0 28px 85px rgba(24,24,19,.08); }
.behind-frame__visual { position: relative; min-width: 0; min-height: 100%; overflow: hidden; background: #e6e6e2; touch-action: pan-y; }
.behind-frame__visual::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.behind-frame__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.018); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform 1.25s cubic-bezier(.22,.61,.36,1); }
.behind-frame__visual img.is-active { opacity: 1; transform: scale(1); }
.behind-frame__image-count { position: absolute; z-index: 3; left: 22px; bottom: 20px; padding: 8px 10px; border-radius: 999px; color: white; background: rgba(10,10,10,.42); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); font: 500 9px var(--mono); letter-spacing: .09em; }
.behind-frame__story { min-width: 0; padding: clamp(34px, 4.6vw, 72px); display: flex; flex-direction: column; background: #f7f7f4; }
.behind-frame__story.is-arriving > :not(.behind-frame__navigation) { animation: behind-copy .55s cubic-bezier(.22,.61,.36,1) both; }
@keyframes behind-copy { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.behind-frame__meta { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(9,9,9,.12); font: 500 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(9,9,9,.52); }
.behind-frame__meta span:last-child { text-align: right; }
.behind-frame__story h3 { margin: clamp(46px, 7vh, 86px) 0 24px; font: 400 clamp(47px, 5vw, 78px)/.9 var(--serif); letter-spacing: -.035em; }
.behind-frame__narrative { margin: 0; max-width: 490px; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.75; color: rgba(9,9,9,.68); }
.behind-frame__story blockquote { margin: 34px 0 0; padding-left: 18px; border-left: 1px solid var(--ink); font: italic 400 clamp(21px, 2vw, 29px)/1.18 var(--serif); }
.behind-frame__actions { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; margin-top: auto; padding-top: 45px; }
.behind-frame__actions button { min-height: 52px; border-radius: 999px; cursor: pointer; font: 500 9px var(--mono); letter-spacing: .07em; transition: transform .25s, background .25s, color .25s; }
.behind-frame__actions button:hover { transform: translateY(-2px); }
.behind-frame__buy { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; border: 1px solid var(--ink); color: white; background: var(--ink); }
.behind-frame__buy[hidden] { display: none; }
.behind-frame__view { padding: 0 18px; border: 1px solid rgba(9,9,9,.18); color: var(--ink); background: transparent; }
.behind-frame__view:hover { color: white; background: var(--ink); }
.behind-frame__navigation { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(9,9,9,.1); }
.behind-frame__progress { display: flex; align-items: center; gap: 7px; }
.behind-frame__progress button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(9,9,9,.22); cursor: pointer; transition: width .35s cubic-bezier(.22,.61,.36,1), background .35s; }
.behind-frame__progress button.is-active { width: 34px; background: var(--ink); }
.behind-frame__arrows { display: flex; gap: 8px; }
.behind-frame__arrows button { width: 42px; height: 42px; border: 1px solid rgba(9,9,9,.15); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.behind-frame__arrows button:hover { color: white; background: var(--ink); transform: scale(1.04); }
.behind-frame__hint { max-width: 1640px; margin: 18px auto 0; text-align: right; font: 400 8px var(--mono); letter-spacing: .09em; text-transform: uppercase; color: rgba(9,9,9,.38); }

.prints { background: var(--paper); }
.section-head--light { color: var(--ink); }
.edition-note { display: block; margin-top: 14px; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.shop-card { border-top: 1px solid var(--line-dark); padding-top: 18px; }
.shop-image { position: relative; overflow: hidden; background: #ddd; }
.shop-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: transform .7s; }
.shop-card:hover .shop-image img { transform: scale(1.025); }
.shop-image > span { position: absolute; top: 12px; left: 12px; padding: 7px 8px; background: var(--paper); font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.shop-info { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding: 18px 0; }
.shop-info h3 { margin: 0 0 5px; font: 400 clamp(26px, 2.5vw, 38px)/1 var(--serif); }
.shop-info p { margin: 0; font: 400 9px var(--mono); opacity: .55; text-transform: uppercase; letter-spacing: .08em; }
.shop-price { font: 500 13px var(--mono); white-space: nowrap; }
.shop-options { display: grid; grid-template-columns: 1fr 1.2fr; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.shop-options label { padding: 12px 0; }
.shop-options label:first-child { padding-right: 10px; border-right: 1px solid var(--line-dark); }
.shop-options label:last-child { padding-left: 10px; }
.shop-options span { display: block; font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .09em; opacity: .55; }
.shop-options select { width: 100%; padding: 7px 18px 2px 0; background: transparent; border: 0; color: inherit; font-size: 12px; outline: 0; }
.shop-add { width: 100%; margin-top: 12px; border: 1px solid var(--ink); background: transparent; padding: 15px 16px; display: flex; justify-content: space-between; cursor: pointer; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; transition: background .2s, color .2s; }
.shop-add:hover { background: var(--ink); color: white; }
.print-details { margin-top: 100px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.print-details article { padding: 26px 32px 0 0; }
.print-details article + article { border-left: 1px solid var(--line-dark); padding-left: 32px; }
.print-details span { font: 400 9px var(--mono); opacity: .5; }
.print-details h3 { margin: 45px 0 13px; font: 400 28px var(--serif); }
.print-details p { margin: 0; max-width: 340px; font-size: 13px; line-height: 1.7; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: minmax(260px,.9fr) minmax(320px,1.1fr); gap: clamp(55px, 10vw, 170px); align-items: center; }
.about-portrait { position: relative; }
.portrait-placeholder { aspect-ratio: 4/5; background: #111; color: white; display: grid; place-items: center; position: relative; overflow: hidden; }
.portrait-placeholder::before { content: "SK"; position: absolute; font: 400 30vw/.8 var(--serif); color: rgba(255,255,255,.055); transform: rotate(-8deg); }
.portrait-placeholder p { position: absolute; bottom: 18px; left: 18px; margin: 0; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.portrait-reticle { width: 90px; height: 90px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: grid; place-items: center; }
.portrait-reticle span { width: 8px; height: 8px; background: white; }
.contact-sheet { height: 34px; display: flex; justify-content: space-around; align-items: center; border: 1px solid var(--ink); border-top: 0; font: 400 8px var(--mono); }
.about-copy .lead { margin: 40px 0 22px; font: 400 clamp(27px, 3vw, 43px)/1.06 var(--serif); max-width: 640px; }
.about-copy > p:not(.lead) { max-width: 620px; font-size: 14px; line-height: 1.75; }
.kit-list { margin-top: 55px; border-top: 1px solid var(--line-dark); }
.kit-list div { min-height: 58px; border-bottom: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 20px; }
.kit-list span { font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; opacity: .55; }
.kit-list strong { font-size: 13px; font-weight: 500; }
.social-row { display: flex; gap: 28px; margin-top: 35px; }
.social-row a { font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid; padding-bottom: 5px; }

.contact { color: white; background: var(--ink); }
.contact-title { margin: 0; font: 400 clamp(72px, 12vw, 180px)/.78 var(--serif); letter-spacing: -.045em; }
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 150px); align-items: start; margin-top: 100px; }
.contact-copy > p { max-width: 390px; font-size: 17px; line-height: 1.6; }
.availability { margin-top: 34px; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.availability i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; background: white; box-shadow: 0 0 0 5px rgba(255,255,255,.1); animation: status 1.7s infinite; }
@keyframes status { 50% { opacity: .35; } }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.contact-form label span, .cart-checkout label span { display: block; margin-bottom: 9px; font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0; padding: 13px 0; color: white; background: transparent; outline: 0; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, white 50%),linear-gradient(135deg, white 50%, transparent 50%); background-position: calc(100% - 10px) 50%, calc(100% - 5px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form select option { color: black; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: white; }
.form-wide { grid-column: 1/-1; }
.submit-button { border: 1px solid white; padding: 18px; color: white; background: transparent; display: flex; justify-content: space-between; cursor: pointer; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; transition: background .2s, color .2s; }
.submit-button:hover { background: white; color: black; }

.site-footer { padding: 60px var(--pad) 35px; color: white; background: var(--ink); border-top: 1px solid var(--line); overflow: hidden; }
.footer-wordmark { font: 400 16.7vw/.72 var(--serif); white-space: nowrap; letter-spacing: -.055em; transform: translateX(-.5vw); }
.footer-grid { margin-top: 65px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 35px; }
.footer-label { display: block; margin-bottom: 20px; font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .45; }
.footer-grid p, .footer-grid a, .footer-grid > div > span:not(.footer-label) { margin: 0; display: block; font-size: 11px; line-height: 1.9; }
.footer-end { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; text-align: right; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; color: white; background: rgba(0,0,0,.97); }
.lightbox::backdrop { background: black; }
.lightbox[open] { animation: lightbox-open .5s ease both; }
@keyframes lightbox-open { from { clip-path: circle(0 at 50% 50%); } to { clip-path: circle(100% at 50% 50%); } }
.lightbox-stage { position: relative; min-height: 100%; display: grid; place-items: center; padding: 60px clamp(30px, 8vw, 140px) 30px; }
.lightbox figure { width: min(1120px, 78vw); height: calc(100vh - 100px); margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.lightbox figure img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); }
.lightbox figcaption { padding-top: 17px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.lightbox figcaption span { font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.lightbox figcaption h2 { margin: 4px 0 0; font: 400 27px var(--serif); }
.lightbox-meta { text-align: right; }
.lightbox-meta button { display: block; margin-top: 8px; padding: 0 0 5px; border: 0; border-bottom: 1px solid; color: white; background: transparent; cursor: pointer; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.lightbox-close { position: absolute; right: 24px; top: 22px; border: 0; color: white; background: transparent; cursor: pointer; font: 400 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.lightbox-arrow { position: absolute; top: 50%; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
.lightbox-arrow--prev { left: 24px; }.lightbox-arrow--next { right: 24px; }

.cart-drawer { position: fixed; inset: 0; z-index: 150; pointer-events: none; visibility: hidden; }
.cart-drawer.is-open { pointer-events: auto; visibility: visible; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.66); opacity: 0; transition: opacity .35s; }
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(520px, 100%); padding: 30px; color: var(--ink); background: var(--paper); overflow-y: auto; transform: translateX(101%); transition: transform .45s cubic-bezier(.2,.75,.2,1); }
.cart-drawer.is-open .cart-panel { transform: none; }
.cart-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
.cart-head span { font: 400 8px var(--mono); text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.cart-head h2 { margin: 3px 0 0; font: 400 44px var(--serif); }
.cart-head button { border: 0; background: transparent; font-size: 27px; cursor: pointer; }
.cart-empty { min-height: 68vh; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-frame { width: 80px; height: 105px; border: 1px solid var(--ink); padding: 9px; margin-bottom: 26px; }
.empty-frame span { display: block; width: 100%; height: 100%; background: var(--ink); }
.cart-empty h3 { margin: 0; font: 400 32px var(--serif); }
.cart-empty p { max-width: 300px; font-size: 13px; line-height: 1.6; }
.cart-empty button { border: 0; border-bottom: 1px solid; padding: 0 0 5px; background: transparent; cursor: pointer; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.cart-item img { width: 90px; height: 110px; object-fit: cover; filter: grayscale(1); }
.cart-item h3 { margin: 0 0 6px; font: 400 25px var(--serif); }
.cart-item p { margin: 0; font: 400 9px/1.6 var(--mono); text-transform: uppercase; opacity: .55; }
.cart-item strong { font: 500 11px var(--mono); }
.cart-item button { align-self: end; border: 0; border-bottom: 1px solid; padding: 0 0 3px; background: transparent; cursor: pointer; font: 400 8px var(--mono); text-transform: uppercase; }
.cart-checkout { padding-top: 28px; }
.cart-total { display: flex; justify-content: space-between; font: 400 11px var(--mono); text-transform: uppercase; }
.cart-checkout > p { font-size: 11px; line-height: 1.6; opacity: .65; }
.cart-checkout form { display: grid; gap: 14px; margin-top: 24px; }
.cart-checkout input { width: 100%; border: 0; border-bottom: 1px solid var(--line-dark); background: transparent; padding: 7px 0; outline: 0; }
.cart-checkout form button { margin-top: 10px; border: 1px solid var(--ink); background: var(--ink); color: white; padding: 15px; display: flex; justify-content: space-between; cursor: pointer; font: 400 9px var(--mono); text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.success-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: white; background: var(--ink); text-align: center; }
.success-page h1 { margin: 0 0 20px; font: 400 clamp(65px, 11vw, 150px)/.8 var(--serif); }
.success-page p { max-width: 520px; line-height: 1.7; }
.success-page a { display: inline-block; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid; font: 400 9px var(--mono); text-transform: uppercase; letter-spacing: .1em; }

@media (pointer: fine) and (min-width: 900px) { .focus-cursor { display: block; } }

@media (max-width: 900px) {
  .site-header { height: 74px; grid-template-columns: 1fr auto auto; padding-top: 12px; padding-bottom: 12px; }
  .brand-name { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .site-nav { position: fixed; inset: 0; z-index: -1; color: white; background: var(--ink); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: var(--pad); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s; }
  .site-nav a { font: 400 15vw/.9 var(--serif); text-transform: none; letter-spacing: -.04em; }
  .site-header.menu-open { mix-blend-mode: normal; }
  .site-header.menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-toggle { order: 2; display: grid; grid-template-columns: auto 20px; gap: 3px 8px; color: inherit; background: transparent; border: 0; font: 400 9px var(--mono); text-transform: uppercase; cursor: pointer; }
  .menu-toggle span { grid-row: 1/3; align-self: center; }
  .menu-toggle i { width: 20px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-open .menu-toggle i:first-of-type { transform: translateY(2px) rotate(45deg); }
  .menu-open .menu-toggle i:last-of-type { transform: translateY(-2px) rotate(-45deg); }
  .bag-button { order: 3; margin-left: 12px; padding: 8px 9px; font-size: 0; }
  .bag-button span { margin: 0; font-size: 9px; }
  .display { font-size: clamp(60px, 16vw, 112px); }
  .hero-bottom { align-items: center; }
  .hero-bottom > p { max-width: 320px; }
  .circle-link { width: 100px; height: 100px; }
  .intro-grid, .section-head, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-head { gap: 28px; }
  .intro-grid { gap: 45px; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: span 6; padding-top: 0; margin-top: 0; }
  .portfolio-card:nth-child(even) { padding-top: 12vw; }
  .time-lens__machine { grid-template-columns: 1fr; }
  .time-lens__stage { min-height: min(82vw, 760px); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .behind-frame__heading { grid-template-columns: 1fr; gap: 30px; }
  .behind-frame__heading > p { max-width: 620px; }
  .behind-frame__showcase { min-height: 0; grid-template-columns: 1fr; }
  .behind-frame__visual { min-height: 0; aspect-ratio: 16/10; }
  .behind-frame__story h3 { margin-top: 48px; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-card:last-child { grid-column: 1/-1; width: calc(50% - 13px); }
  .print-details { grid-template-columns: 1fr; }
  .print-details article, .print-details article + article { padding: 25px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .print-details h3 { margin-top: 25px; }
  .about-grid { gap: 70px; }
  .about-portrait { max-width: 560px; }
  .contact-grid { margin-top: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-end { align-items: flex-start; text-align: left; gap: 20px; }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  .hero-copy { padding-top: 105px; padding-bottom: 70px; justify-content: flex-end; }
  .display { font-size: 16.5vw; line-height: .83; }
  .display-italic { padding-left: 6vw; }
  .hero-bottom { margin-top: 40px; }
  .hero-bottom > p { font-size: 12px; max-width: 230px; }
  .circle-link { width: 84px; height: 84px; }
  .circle-link span { font-size: 8px; }
  .circle-link svg { display: none; }
  .hero-meta { display: none; }
  .viewfinder { width: 28px; height: 28px; }
  .viewfinder::before { height: 28px; }.viewfinder::after { width: 28px; }
  .headline { font-size: clamp(55px, 18vw, 90px); }
  .shutter-line { overflow: hidden; gap: 25px; justify-content: flex-start; }
  .shutter-line span { flex: 0 0 auto; }
  .portfolio-grid { display: block; }
  .portfolio-card, .portfolio-card:nth-child(n) { margin: 0 0 52px; padding: 0; }
  .portfolio-card:nth-child(even) { width: 86%; margin-left: auto; }
  .portfolio-caption h3 { font-size: 29px; }
  .portfolio-location { max-width: 90px; }
  .portfolio-cta { align-items: flex-start; flex-direction: column; margin-top: 60px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card:last-child { grid-column: auto; width: auto; }
  .shop-info h3 { font-size: 32px; }
  .about-copy .lead { margin-top: 30px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .form-wide { grid-column: 1; }
  .contact-title { font-size: 20vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-grid > div:first-child, .footer-end { grid-column: 1/-1; }
  .footer-wordmark { font-size: 17vw; }
  .lightbox-stage { padding: 62px 16px 20px; }
  .lightbox figure { width: 100%; height: calc(100vh - 88px); }
  .lightbox-arrow { top: auto; bottom: 25px; width: 44px; height: 44px; z-index: 3; }
  .lightbox-arrow--prev { left: 16px; }.lightbox-arrow--next { right: 16px; }
  .lightbox figcaption { padding: 13px 58px 0; }
  .lightbox-meta button { display: none; }
  .cart-panel { padding: 22px 18px; }
}

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

/* Mobile-first refinement layer */
html {
  min-width: 320px;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 320px;
  overscroll-behavior-y: none;
}
button, a, input, select, textarea { touch-action: manipulation; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.portfolio-image, .shop-add, .submit-button, .bag-button, .menu-toggle,
.lightbox-close, .lightbox-arrow, .cart-head button { min-height: 44px; }
.lightbox { height: 100dvh; }
.lightbox-stage { min-height: 100dvh; }
.cart-panel { overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }

@media (hover: none) {
  .portfolio-image:hover img, .shop-card:hover .shop-image img { transform: none; }
  .portfolio-image:hover::after { border-color: transparent; inset: 0; }
  .circle-link:hover, .shop-add:hover, .submit-button:hover { transform: none; }
  .behind-frame__actions button:hover, .behind-frame__arrows button:hover { transform: none; }
}

@media (max-width: 720px) {
  :root { --pad: clamp(18px, 5vw, 26px); }
  html { scroll-padding-top: 70px; }
  .grain, .focus-cursor { display: none !important; }

  .site-header {
    height: calc(64px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) var(--pad) 0;
    grid-template-columns: 1fr auto auto;
    background: linear-gradient(180deg, rgba(0,0,0,.56), transparent);
    mix-blend-mode: normal;
  }
  .site-header.menu-open { height: calc(64px + env(safe-area-inset-top)); background: var(--ink); }
  .brand-mark { width: 38px; height: 38px; }
  .menu-toggle { min-width: 62px; min-height: 44px; padding: 0; justify-content: end; align-content: center; }
  .bag-button { width: 44px; height: 44px; padding: 0; display: grid; place-items: center; margin-left: 6px; }
  .bag-button span { min-width: 22px; height: 22px; }
  .site-nav {
    inset: 0;
    min-height: 100dvh;
    padding: calc(88px + env(safe-area-inset-top)) var(--pad) calc(30px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: clamp(18px, 4vh, 34px);
  }
  .site-nav a { width: 100%; padding: 4px 0; font-size: clamp(50px, 16vw, 82px); }

  .hero, .hero-copy { min-height: 100dvh; }
  .hero-media img { object-position: 58% center; animation-duration: 6s; }
  .hero-media::after { background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 65%, rgba(0,0,0,.5) 100%); }
  .hero-copy {
    justify-content: flex-end;
    padding: calc(96px + env(safe-area-inset-top)) var(--pad) calc(34px + env(safe-area-inset-bottom));
  }
  .eyebrow { margin-bottom: 20px; font-size: 9px; line-height: 1.5; }
  .display { font-size: clamp(54px, 16.4vw, 84px); line-height: .84; max-width: 100%; }
  .display-italic { padding-left: 5vw; }
  .hero-bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 18px; margin-top: 30px; }
  .hero-bottom > p { max-width: 250px; font-size: 12px; line-height: 1.55; }
  .circle-link { width: 78px; height: 78px; }
  .circle-link span { font-size: 7.5px; }
  .circle-link svg { display: none; }
  .focus-dot { right: 18%; top: 36%; }
  .viewfinder--tl, .viewfinder--tr { top: 12vh; }
  .viewfinder--bl, .viewfinder--br { bottom: 5vh; }

  .section-pad { padding: clamp(72px, 20vw, 98px) var(--pad); }
  .section-index { margin-bottom: 22px; }
  .headline { font-size: clamp(52px, 16vw, 80px); line-height: .9; }
  .intro-grid { gap: 34px; }
  .intro-copy .lead { font-size: clamp(28px, 8.4vw, 38px); }
  .intro-copy p { font-size: 14px; line-height: 1.65; }
  .shutter-line {
    min-height: 60px;
    margin-top: 58px;
    padding-right: 20px;
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .shutter-line::-webkit-scrollbar { display: none; }

  .section-head { gap: 22px; margin-bottom: 42px; }
  .section-note { font-size: 13px; }
  .filter-bar {
    position: sticky;
    top: calc(64px + env(safe-area-inset-top));
    z-index: 12;
    margin: 0 calc(var(--pad) * -1) 46px;
    padding-left: var(--pad);
    background: rgba(9,9,9,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    scroll-snap-type: x proximity;
  }
  .filter-button {
    flex: 0 0 auto;
    min-width: 142px;
    min-height: 52px;
    padding: 16px 14px;
    scroll-snap-align: start;
  }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
  .portfolio-card, .portfolio-card:nth-child(n) { width: 100%; margin: 0; padding: 0; grid-column: 1; }
  .portfolio-image img { max-height: 76dvh; }
  .portfolio-image .open-mark { opacity: .82; transform: none; right: 13px; bottom: 13px; font-size: 8px; }
  .portfolio-caption { align-items: start; padding-top: 13px; }
  .portfolio-caption h3 { font-size: clamp(29px, 9vw, 38px); }
  .portfolio-location { max-width: 110px; line-height: 1.45; }
  .portfolio-cta { margin-top: 62px; padding-top: 22px; }
  .portfolio-cta p { font-size: clamp(29px, 8vw, 38px); }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }

  .time-lens { padding: 76px var(--pad) 70px; }
  .time-lens__heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 42px; }
  .time-lens__heading h2 { font-size: clamp(60px, 20vw, 96px); }
  .time-lens__intro p { font-size: 13px; }
  .time-lens__stage { min-height: min(121vw, 700px); padding: 43px 10px 86px; }
  .time-lens__readout { inset: 16px 12px auto; }
  .time-lens__photo-mat, .time-lens__stage.is-comparing .time-lens__photo-mat { height: 100%; min-height: 0; }
  .time-lens__photo-mat img, .time-lens__stage.is-comparing .time-lens__photo-mat img { min-height: 0; }
  .time-lens__stage[data-era="tlr"] .time-lens__photo-mat { width: 92%; }
  .time-lens__stage[data-era="instant"] .time-lens__photo-mat { width: 88%; }
  .time-lens__viewfinder { inset: 55px 22px 105px; }
  .time-lens__shutter { inset: 40px 8px 80px; }
  .time-lens__caption { left: 12px; right: 12px; bottom: 17px; align-items: center; }
  .time-lens__caption strong { font-size: clamp(23px, 7vw, 31px); }
  .time-lens__compare { min-height: 44px; }
  .time-lens__console { padding: 24px 18px 28px; }
  .time-lens__label-row span:last-child { display: none; }
  .time-lens__eras { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .time-lens__eras::-webkit-scrollbar { display: none; }
  .time-lens__era { flex: 0 0 130px; min-height: 62px; scroll-snap-align: center; }
  .time-lens__dial-row { grid-template-columns: 44px 1fr 44px; gap: 12px; }
  .time-lens__arrow { width: 44px; height: 44px; }
  .time-lens__dial { width: 108px; }
  .time-lens__era-copy { min-height: 160px; }
  .time-lens__footnote { text-align: left; line-height: 1.6; }

  .behind-frame { padding: 76px var(--pad) 72px; }
  .behind-frame__heading { gap: 26px; margin-bottom: 42px; }
  .behind-frame__heading .section-index { margin-bottom: 22px; }
  .behind-frame__heading h2 { font-size: clamp(57px, 17vw, 82px); }
  .behind-frame__heading > p { font-size: 13px; }
  .behind-frame__showcase { border-radius: 13px; }
  .behind-frame__visual { aspect-ratio: 4/3; }
  .behind-frame__image-count { left: 14px; bottom: 13px; }
  .behind-frame__story { padding: 28px 22px 24px; }
  .behind-frame__story h3 { margin: 38px 0 18px; font-size: clamp(46px, 15vw, 68px); }
  .behind-frame__narrative { font-size: 14px; line-height: 1.68; }
  .behind-frame__story blockquote { margin-top: 27px; font-size: 23px; }
  .behind-frame__actions { grid-template-columns: 1fr; padding-top: 38px; }
  .behind-frame__actions button { min-height: 50px; }
  .behind-frame__navigation { margin-top: 24px; }
  .behind-frame__hint { text-align: left; line-height: 1.5; }

  .shop-grid { grid-template-columns: 1fr; gap: 54px; }
  .shop-card:last-child { width: auto; grid-column: auto; }
  .shop-image img { max-height: 72dvh; }
  .shop-info { padding: 16px 0; }
  .shop-info h3 { font-size: clamp(32px, 9vw, 40px); }
  .shop-options { grid-template-columns: 1fr; }
  .shop-options label { min-height: 62px; padding: 10px 0; }
  .shop-options label:first-child { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .shop-options label:last-child { padding-left: 0; }
  .shop-options select { min-height: 38px; padding: 5px 30px 3px 0; font-size: 16px; }
  .shop-add { min-height: 52px; margin-top: 14px; }
  .print-details { margin-top: 70px; }
  .print-details article, .print-details article + article { padding: 24px 0; }

  .about-grid { gap: 50px; }
  .about-portrait { width: 100%; }
  .about-copy .lead { font-size: clamp(29px, 8.6vw, 40px); }
  .about-copy > p:not(.lead) { font-size: 14px; }
  .kit-list { margin-top: 42px; }
  .kit-list div { min-height: 64px; grid-template-columns: .8fr 1.4fr; }
  .social-row { flex-wrap: wrap; gap: 12px 24px; }
  .social-row a { min-height: 44px; display: inline-flex; align-items: center; }

  .contact-title { font-size: clamp(64px, 19vw, 96px); line-height: .82; overflow-wrap: anywhere; }
  .contact-grid { margin-top: 54px; gap: 48px; }
  .contact-copy > p { font-size: 15px; }
  .contact-form { grid-template-columns: 1fr; gap: 24px; }
  .contact-form label, .form-wide { grid-column: 1; }
  .contact-form input, .contact-form select, .contact-form textarea { min-height: 48px; font-size: 16px; }
  .contact-form textarea { min-height: 132px; }
  .submit-button { min-height: 54px; }

  .site-footer { padding: 48px var(--pad) calc(28px + env(safe-area-inset-bottom)); }
  .footer-wordmark { font-size: 17vw; }
  .footer-grid { margin-top: 42px; grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-grid > div:first-child, .footer-end { grid-column: 1/-1; }
  .footer-grid a { min-height: 38px; display: flex; align-items: center; }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
  }
  .lightbox[open] { animation: lightbox-fade .24s ease both; }
  @keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
  .lightbox-stage {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    padding: calc(58px + env(safe-area-inset-top)) 12px calc(72px + env(safe-area-inset-bottom));
    display: block;
  }
  .lightbox figure {
    width: 100%;
    height: 100%;
    margin: 0;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .lightbox figure img { min-height: 0; object-fit: contain; }
  .lightbox figcaption { min-height: 72px; padding: 12px 4px 0; gap: 12px; }
  .lightbox figcaption h2 { font-size: 24px; }
  .lightbox-meta { min-width: 90px; }
  .lightbox-meta button { display: block; font-size: 8px; }
  .lightbox-close { top: calc(12px + env(safe-area-inset-top)); right: 14px; min-width: 70px; text-align: right; }
  .lightbox-arrow {
    top: auto;
    bottom: calc(13px + env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    z-index: 3;
    background: rgba(0,0,0,.4);
  }
  .lightbox-arrow--prev { left: 12px; }
  .lightbox-arrow--next { right: 12px; }

  .cart-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: calc(18px + env(safe-area-inset-top)) var(--pad) calc(22px + env(safe-area-inset-bottom));
    transform: translateY(101%);
    transition-duration: .36s;
  }
  .cart-head { position: sticky; top: calc(-18px - env(safe-area-inset-top)); z-index: 2; margin: calc(-18px - env(safe-area-inset-top)) calc(var(--pad) * -1) 0; padding: calc(18px + env(safe-area-inset-top)) var(--pad) 18px; background: rgba(241,240,235,.96); backdrop-filter: blur(10px); }
  .cart-head h2 { font-size: 38px; }
  .cart-head button { width: 44px; height: 44px; }
  .cart-empty { min-height: calc(100dvh - 120px); }
  .cart-item { grid-template-columns: 78px minmax(0,1fr) auto; }
  .cart-item img { width: 78px; height: 98px; }
  .cart-item h3 { font-size: 23px; }
  .cart-checkout input { min-height: 46px; font-size: 16px; }
  .cart-checkout form button { min-height: 52px; }
}

@media (max-width: 380px) {
  .display { font-size: 15.6vw; }
  .hero-bottom > p { max-width: 205px; }
  .circle-link { width: 70px; height: 70px; }
  .contact-title { font-size: 18vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: 1 !important; }
  .time-lens__stage { min-height: 127vw; }
  .time-lens__era { flex-basis: 118px; }
  .behind-frame__story { padding-left: 18px; padding-right: 18px; }
  .behind-frame__navigation { grid-template-columns: 1fr; }
  .behind-frame__arrows { justify-self: end; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 560px) {
  .hero-copy { padding-top: calc(76px + env(safe-area-inset-top)); padding-bottom: 18px; }
  .display { font-size: clamp(48px, 10vw, 72px); }
  .hero-bottom { margin-top: 16px; }
  .circle-link { width: 68px; height: 68px; }
  .time-lens__stage { min-height: 78vh; }
  .lightbox-stage { padding-top: calc(44px + env(safe-area-inset-top)); padding-bottom: calc(55px + env(safe-area-inset-bottom)); }
  .lightbox figcaption { min-height: 52px; }
}
