@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #050505;
  --paper: #ebe9e4;
  --paper-translucent: rgba(235,233,228,.84);
  --paper-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper-noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper-noise)' opacity='.14'/%3E%3C/svg%3E");
  --gutter: 4vw;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--paper); }
body {
  margin: 0; color: var(--ink); background-color: var(--paper);
  background-image: var(--paper-grain); background-size: 180px 180px;
  background-attachment: fixed; background-blend-mode: multiply;
  overflow-x: hidden; overflow-x: clip;
  font: 400 15.5px/1.55 "Manrope", Arial, sans-serif;
}
body::before {
  content: ""; position: fixed; z-index: 9999; inset: 0;
  pointer-events: none; background: var(--paper); opacity: 1;
  transition: opacity .58s cubic-bezier(.22,.65,.3,1);
}
body.page-ready::before { opacity: 0; }
body.page-leaving::before { opacity: 1; pointer-events: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  height: var(--header-height); padding: 0 var(--gutter); display: flex; align-items: center;
  justify-content: space-between; position: relative; z-index: 20; background: transparent;
}
.site-name { font-size: 24px; letter-spacing: -.04em; }
.primary-nav { display: flex; gap: 30px; }
.primary-nav a { padding: 4px 0 2px; border-bottom: 1px solid transparent; }
.primary-nav a:hover, .primary-nav a.active { border-color: currentColor; }
.menu-button { display: none; background: none; border: 0; padding: 8px 0; width: 30px; min-height: 34px; }
.menu-button span:nth-child(-n+3) { display: block; width: 100%; height: 1px; background: #000; margin: 6px 0; transition: .25s; }

.home-hero { padding: 28px var(--gutter) 70px; display: flex; flex-direction: column; align-items: center; }
.home-hero h1 { margin-bottom: 20px; font-size: clamp(34px, 3.2vw, 48px); font-weight: 400; letter-spacing: -.06em; }
.hero-image { display: block; width: min(66vw, 950px); aspect-ratio: 1.9; overflow: hidden; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.52); }
.placeholder { position: relative; overflow: hidden; background: #d7d5d1; }
.placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 30%, rgba(255,255,255,.13), transparent 67%); }
.placeholder > span:not(.category span) { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 1; color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.placeholder--studio { background: linear-gradient(135deg,#1e1e1e,#666 48%,#181818); }
.placeholder--portrait { background: linear-gradient(135deg,#937e63,#c8b8a1 45%,#56624b); }
.placeholder--warm { background: linear-gradient(135deg,#9b8061,#d5c4a5 45%,#775e3f); }
.placeholder--wood { background: linear-gradient(135deg,#d8b98c,#9e6d3c 50%,#5b4028); }
.placeholder--blue { background: linear-gradient(135deg,#25344d,#697e9e 52%,#172236); }
.placeholder--green { background: linear-gradient(135deg,#69835f,#add29b 50%,#6aa7be); }

.home-about { padding: 70px var(--gutter) 105px; display: grid; grid-template-columns: minmax(300px,1fr) minmax(320px,.9fr); gap: 8vw; align-items: center; }
.portrait { min-height: 0; max-height: 680px; aspect-ratio: 4/5; overflow: hidden; }
.portrait img, .about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-copy { max-width: 570px; }
.about-copy h2, .section-heading h2 { font-size: clamp(38px,5vw,68px); font-weight: 400; letter-spacing: -.06em; }
.about-copy p { margin-bottom: 22px; }
.text-link { display: inline-block; border-bottom: 1px solid; padding-bottom: 2px; }
.home-work { padding: 100px var(--gutter) 150px; }
.home-page .home-hero,
.home-page .home-about,
.home-page .home-work {
  opacity: 0; transform: translate3d(0, 54px, 0);
  transition: opacity .9s cubic-bezier(.22,.65,.3,1), transform 1s cubic-bezier(.22,.65,.3,1);
}
.home-page .home-hero.is-in-view,
.home-page .home-about.is-in-view,
.home-page .home-work.is-in-view { opacity: 1; transform: translate3d(0, 0, 0); }
.home-page .home-hero,
.home-page .home-about,
.home-page .home-work { isolation: isolate; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.section-heading h2 { margin: 0; }

.project-grid { display: grid; gap: 14px; }
.project-grid--three { grid-template-columns: repeat(3, 1fr); }
.project-grid--two { grid-template-columns: repeat(2, 1fr); gap: 60px 20px; }
.project-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px 14px; }
.project-grid--all { grid-template-columns: repeat(3, 1fr); gap: 64px 20px; }
.project-image { aspect-ratio: 4/3; overflow: hidden; background: #000; }
.project-image img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transform: scale(.9); filter: brightness(.62) saturate(.8);
  transition: transform .65s cubic-bezier(.2,.72,.2,1), filter .5s ease;
}
.image-cycle { position: relative; }
.image-cycle .cycle-frame {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.15s ease, transform .65s cubic-bezier(.2,.72,.2,1), filter .5s ease;
}
.image-cycle .cycle-frame.is-active { opacity: 1; }
.project-card--academic .image-cycle img { object-fit: contain; }
.project-card--directory .project-image { border: 1px solid #000; }
.project-card--directory .project-image img {
  object-fit: contain;
  transform: scale(.88);
}
.gallery-page .project-image { background: #000; }
.gallery-page .project-image img { object-fit: contain; }
.project-card:hover .project-image img,
.project-card:focus-visible .project-image img {
  transform: scale(1); filter: brightness(1) saturate(1);
}
.project-card:focus-visible { outline: 1px solid #000; outline-offset: 4px; }
.project-meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 12px; }
.project-meta h2, .project-meta h3 { margin: 0; font-size: 15px; font-weight: 500; }
.project-meta span { color: #666; }

.about-page {
  width: min(100%, 1280px); min-height: calc(100vh - var(--header-height));
  margin: 0 auto; padding: 52px var(--gutter) 80px;
  display: grid; grid-template-columns: minmax(280px, 500px) minmax(360px, 590px);
  justify-content: center; align-items: center; gap: clamp(54px, 8vw, 120px);
}
.about-photo { width: min(100%, 500px); min-height: 0; aspect-ratio: 2/3; overflow: hidden; }
.about-text { align-self: center; max-width: 590px; }
.about-text h1 { font-size: clamp(52px,5vw,72px); line-height: 1; font-weight: 400; letter-spacing: -.07em; margin-bottom: 34px; }
.about-text p { margin-bottom: 17px; }

.contact-page { min-height: 100vh; display: flex; flex-direction: column; }
.contact-main {
  flex: 1; min-height: calc(100vh - var(--header-height)); padding: 70px var(--gutter) 90px;
  display: grid; place-items: center;
}
.contact-card { width: min(100%, 1040px); }
.contact-kicker { margin-bottom: 18px; color: #777; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h1 {
  margin-bottom: clamp(48px, 8vw, 100px); font-size: clamp(64px, 10vw, 150px);
  line-height: .82; font-weight: 400; letter-spacing: -.075em;
}
.contact-primary { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.contact-primary a { font-size: clamp(23px, 3vw, 44px); line-height: 1.2; letter-spacing: -.045em; }
.contact-primary a:hover, .contact-primary a:focus-visible { opacity: .55; }
.contact-documents {
  width: min(100%, 700px); margin-top: clamp(34px, 5vw, 58px);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.contact-document {
  min-height: 105px; padding: 20px 22px; display: flex; flex-direction: column;
  justify-content: space-between; color: #fff; background: #090909; border: 1px solid #090909;
  transition: color .42s ease, background-color .42s ease, transform .42s cubic-bezier(.2,.75,.25,1);
}
.contact-document span { font-size: clamp(19px, 2vw, 28px); line-height: 1; letter-spacing: -.035em; }
.contact-document small { color: #aaa; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-document:hover, .contact-document:focus-visible { color: #090909; background: transparent; transform: translateY(-3px); }
.contact-document:hover small, .contact-document:focus-visible small { color: #555; }
.contact-socials {
  margin-top: clamp(48px, 7vw, 82px); padding-top: 20px; border-top: 1px solid #d8d8d8;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px;
}
.contact-socials a { display: flex; justify-content: space-between; gap: 20px; }
.contact-socials span { color: #777; }
.instagram { display: block; width: 23px; height: 23px; border: 2px solid; border-radius: 7px; position: relative; }
.instagram::before { content: ""; position: absolute; inset: 4px; border: 2px solid; border-radius: 50%; }
.instagram::after { content: ""; position: absolute; width: 3px; height: 3px; background: #000; border-radius: 50%; right: 3px; top: 3px; }

.work-page { min-height: 780px; padding: 62px var(--gutter) 110px; }
.work-page h1 {
  margin: 10px 0 86px; text-align: center;
  font-size: clamp(64px, 8vw, 116px); font-weight: 400; line-height: .82; letter-spacing: -.075em;
}
.work-heading { position: relative; margin: 10px 0 86px; }
.work-page .work-heading h1 { margin: 0; }
.work-heading .text-link { position: absolute; right: 0; bottom: 8px; }
.work-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.category {
  position: relative; aspect-ratio: 1.06; display: grid; place-items: center; overflow: hidden;
  background: #000; border: 1px solid #000;
  filter: saturate(.8); opacity: 0; transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
}
.category.is-visible { opacity: 1; transform: translateY(0); }
.category img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  transform: scale(.88); filter: blur(5px) brightness(.62) saturate(.8);
  transition: filter .55s ease, transform .55s cubic-bezier(.2,.6,.3,1);
}
.category--contain img {
  object-fit: contain;
}
.category::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.07); transition: background-color .35s ease;
}
.category::after {
  content: ""; position: absolute; z-index: 2; inset: -45%;
  pointer-events: none; opacity: .2; mix-blend-mode: soft-light;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  animation: film-grain .42s steps(2, end) infinite;
}
.category:hover::before, .category:focus-visible::before { background: rgba(0,0,0,.34); }
.category:hover img, .category:focus-visible img { transform: scale(1); filter: blur(0) brightness(1) saturate(1) contrast(1.04); }
.category:hover::after, .category:focus-visible::after { opacity: .3; }
.category span { color: #fff; font-weight: 700; font-size: clamp(18px,1.75vw,27px); position: relative; z-index: 3; }
.category-mobile-description { display: none; }
.work-description-panel {
  position: fixed; z-index: 44; left: 0; right: 0; bottom: 0;
  min-height: 156px; padding: 34px var(--gutter) 38px;
  display: grid; grid-template-columns: minmax(140px, .25fr) minmax(0, 1fr); align-items: start; gap: 48px;
  color: #fff; background: rgba(0,0,0,.92); border-top: 1px solid rgba(255,255,255,.18);
  opacity: 0; transform: translate3d(0, calc(100% + 12px), 0); pointer-events: none;
  transition: opacity .7s ease, transform .9s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.work-description-panel.is-active { opacity: 1; transform: translate3d(0, 0, 0); }
.work-description-panel > * {
  opacity: 0; transform: translate3d(0, 10px, 0);
  transition: opacity .55s ease .16s, transform .7s cubic-bezier(.16,1,.3,1) .16s;
}
.work-description-panel.is-active > * { opacity: 1; transform: translate3d(0, 0, 0); }
.work-description-panel.is-switching > * {
  opacity: 0; transform: translate3d(0, -7px, 0);
  transition: opacity .2s ease, transform .28s ease;
}
.work-description-label {
  margin: 2px 0 0; color: #aaa; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.work-description-copy {
  width: min(100%, 900px); margin: 0;
  font-size: clamp(18px, 2vw, 28px); font-weight: 400; line-height: 1.28; letter-spacing: -.035em;
}
body:not(.work-directory-page).category-description-active .site-footer {
  transform: translate3d(0, 100%, 0) !important; pointer-events: none;
}
body:not(.work-directory-page).category-description-active .footer-toggle { opacity: 0; visibility: hidden; }

@keyframes film-grain {
  0% { transform: translate3d(-4%, -7%, 0); }
  20% { transform: translate3d(6%, 3%, 0); }
  40% { transform: translate3d(-2%, 8%, 0); }
  60% { transform: translate3d(8%, -3%, 0); }
  80% { transform: translate3d(-7%, 4%, 0); }
  100% { transform: translate3d(3%, -8%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .home-page .home-hero, .home-page .home-about, .home-page .home-work { opacity: 1; transform: none; transition: none; }
  .category { opacity: 1; transform: none; transition: none; }
  .category::after { animation: none; }
  .category img { transition: none; }
  .image-cycle .cycle-frame { transition: none; }
  .work-description-panel, .work-description-panel > * { transition: none; }
}
.site-footer { min-height: 180px; padding: 45px 11.7vw 38px; display: flex; justify-content: space-between; align-items: end; }
body:not(.contact-page) { padding-bottom: 34px; }
body:not(.contact-page) .site-footer {
  position: fixed; z-index: 45; left: 0; right: 0; bottom: 0; height: 190px; min-height: 0;
  padding: 66px 9vw 34px; align-items: end;
  background: transparent; transform: translate3d(0, calc(100% - 34px), 0);
  transition: transform .58s cubic-bezier(.22,.65,.3,1), height .58s cubic-bezier(.22,.65,.3,1);
}
body:not(.contact-page) .site-footer::before {
  content: ""; position: absolute; z-index: -1; inset: 34px 0 0;
  background: var(--paper-translucent); border-top: 1px solid rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
body.work-directory-page { padding-bottom: 34px; }
body.work-directory-page .site-footer {
  height: clamp(216px, 22vh, 252px); padding: 66px var(--gutter) 30px; pointer-events: auto;
}
body.work-directory-page .site-footer::before {
  inset: 34px 0 0; background: var(--paper-translucent);
  transition: background-color .9s cubic-bezier(.22,.65,.3,1), border-color .9s ease;
}
body.work-directory-page.category-description-active .site-footer::before {
  background: rgba(0,0,0,.94); border-color: rgba(255,255,255,.18);
}
body.work-directory-page .site-footer > .footer-social,
body.work-directory-page .site-footer > .footer-contact {
  opacity: 1; transform: translate3d(0,0,0);
  transition: opacity .48s ease, transform .65s cubic-bezier(.16,1,.3,1), color .6s ease;
}
body.work-directory-page.category-description-active .site-footer > .footer-social,
body.work-directory-page.category-description-active .site-footer > .footer-contact {
  opacity: 0; transform: translate3d(0,8px,0); pointer-events: none;
}
body.work-directory-page.category-description-active .footer-toggle { opacity: 0; pointer-events: none; }
body.work-directory-page .work-description-panel {
  position: absolute; inset: 34px 0 0; min-height: 0; padding: 28px var(--gutter) 26px;
  grid-template-columns: minmax(120px,.23fr) minmax(0,1fr); align-items: center; gap: clamp(34px,6vw,90px);
  color: #fff; background: transparent; border: 0;
  transform: none; pointer-events: none;
}
body.work-directory-page .work-description-label { align-self: start; margin-top: 4px; }
body.work-directory-page .work-description-copy {
  width: min(100%,1100px); font-size: clamp(18px,1.65vw,25px); line-height: 1.3;
}
body.work-directory-page .footer-contact { text-align: right; }
body:not(.contact-page) .site-footer:hover,
body:not(.contact-page) .site-footer:focus-within,
body:not(.contact-page) .site-footer.is-open { transform: translate3d(0, 0, 0); }
.footer-toggle {
  position: absolute; left: auto; right: var(--gutter); top: 0; transform: none;
  min-width: 116px; height: 34px; padding: 0 20px; color: #111;
  background: var(--paper-translucent); border: 1px solid rgba(0,0,0,.14); border-bottom: 0;
  border-radius: 2px 2px 0 0; font: inherit; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.footer-toggle::after { content: " ↑"; }
.site-footer.is-open .footer-toggle::after,
.site-footer:hover .footer-toggle::after,
.site-footer:focus-within .footer-toggle::after { content: " ↓"; }
.footer-social { display: flex; flex-direction: column; gap: 14px; }
.footer-social a { display: grid; grid-template-columns: 116px 25px; align-items: center; gap: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 15px; text-align: center; }

.gallery-page { padding: 60px var(--gutter) 120px; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 70px; }
.gallery-heading > *, .project-intro > *, .directory-section-heading > * { min-width: 0; }
.gallery-heading h1 { font-size: clamp(50px,6vw,84px); line-height: 1; font-weight: 500; letter-spacing: -.07em; margin: 0; }
.directory-page { padding-top: 70px; }
.directory-heading { margin-bottom: clamp(78px, 9vw, 132px); }
.directory-kicker {
  margin-bottom: 22px; color: #777; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
}
.directory-heading h1 {
  font-size: clamp(64px, 10vw, 150px); line-height: .82;
  font-weight: 400; letter-spacing: -.075em;
}
.directory-back { border-bottom: 1px solid; padding-bottom: 2px; }
.directory-page .project-meta {
  display: grid; justify-content: initial; gap: 7px; padding-top: 14px;
}
.directory-page .project-meta h2 {
  min-height: 2.35em; font-size: clamp(15px, 1.15vw, 18px); font-weight: 500;
  line-height: 1.18; letter-spacing: -.02em;
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.2,.75,.25,1), letter-spacing .42s ease;
}
.directory-page .project-meta > span {
  font-size: 11px; line-height: 1.45; letter-spacing: .01em;
}
.directory-page .project-image:hover + .project-meta h2,
.directory-page .project-card:focus-visible .project-meta h2 {
  transform: translate3d(0, -2px, 0) scale(1.06); letter-spacing: -.03em;
}
.directory-groups { display: grid; gap: clamp(110px, 13vw, 190px); }
.directory-section-heading {
  display: flex; align-items: baseline; justify-content: space-between; gap: 30px;
  margin-bottom: 32px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,.45);
}
.directory-section-heading h2 {
  display: flex; align-items: baseline; gap: 18px; margin: 0;
  font-size: clamp(28px, 3.3vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.045em;
}
.directory-section-heading h2 span {
  color: #777; font-size: 11px; font-weight: 400; letter-spacing: .08em;
}
.directory-section-heading p {
  margin: 0; color: #666; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.directory-placeholder > div {
  display: grid; place-items: center; aspect-ratio: 4/3; padding: 20px;
  color: #fff; background: #000; font-size: clamp(17px, 1.5vw, 22px); letter-spacing: -.03em;
}
.directory-placeholder p { margin: 14px 0 0; color: #666; font-size: 11px; letter-spacing: .01em; }
.coming-soon { min-height: 42vh; display: grid; place-items: center; margin: 0; font-size: clamp(22px, 3vw, 42px); letter-spacing: -.04em; text-transform: lowercase; }

.project-page { padding: 72px var(--gutter) 130px; }
.project-intro {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; align-items: start;
  max-width: 1320px; margin: 0 auto 90px;
}
.project-back { width: max-content; border-bottom: 1px solid; padding-bottom: 2px; }
.project-intro > div { max-width: 850px; }
.project-intro h1 {
  margin-bottom: 18px; font-size: clamp(46px, 6.2vw, 92px); font-weight: 400;
  line-height: .98; letter-spacing: -.07em;
}
.project-location { margin-bottom: 26px; color: #555; }
.project-intro > div > p:not(.project-location) { max-width: 720px; }
.project-recognition {
  margin: 34px 0 0; padding: 18px 0; border-top: 1px solid #111; border-bottom: 1px solid #111;
  font-size: clamp(18px, 1.8vw, 27px); font-weight: 600; letter-spacing: -.035em;
}
.project-access {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  margin-top: 28px; padding: 18px 24px; color: #fff; background: #000;
}
.project-access span {
  font-size: clamp(23px, 2.6vw, 40px); font-weight: 500; line-height: 1;
  letter-spacing: -.045em; transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.75,.25,1), letter-spacing .35s ease;
}
.project-access small { margin-top: 9px; color: #aaa; font-size: 11px; letter-spacing: .04em; }
.project-access:hover span, .project-access:focus-visible span {
  transform: scale(1.18); letter-spacing: -.02em;
}
.project-access:focus-visible { outline: 1px solid #000; outline-offset: 4px; }
.project-gallery {
  display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 48px);
  max-width: 1400px; margin: 0 auto;
}
.project-gallery-item { grid-column: 1; margin: 0; overflow: hidden; background: #f2f2f2; }
.project-gallery-item:nth-child(3n + 1) { grid-column: 1; }
.project-gallery-item img { display: block; width: 100%; height: auto; }
.course-hero {
  max-width: 1400px; margin: 0 auto clamp(100px, 12vw, 180px); overflow: hidden;
}
.course-hero img { display: block; width: 100%; height: auto; }
.course-stages { max-width: 1400px; margin: 0 auto; }
.course-stage + .course-stage { margin-top: clamp(110px, 14vw, 200px); }
.course-stage-heading {
  display: grid; grid-template-columns: minmax(110px, 1fr) 2fr; gap: 5vw;
  align-items: start; margin-bottom: clamp(30px, 4vw, 58px);
}
.course-stage-heading > p {
  margin: 7px 0 0; color: #666; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.course-stage-heading h2 {
  margin: 0 0 14px; font-size: clamp(32px, 4.4vw, 64px); font-weight: 400;
  line-height: 1; letter-spacing: -.06em;
}
.course-stage-heading div > p { max-width: 680px; margin: 0; color: #444; }
.project-gallery--stage { max-width: none; }
.project-gallery--stage > .project-gallery-item.is-gallery-hidden { display: none; }
.olivetti-photo-credit {
  margin: 14px 0 0; color: #777; font-size: 9px; line-height: 1.45;
  letter-spacing: .035em; text-align: right;
}
.model-study-windows {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px); padding: clamp(28px, 4vw, 64px); background: #000;
}
.assignment-two-poster {
  grid-column: 1 / -1; width: min(60%, 680px); margin: 0 auto clamp(48px, 6vw, 86px);
  transition: width .7s cubic-bezier(.16,1,.3,1);
}
.assignment-two-poster.is-expanded { width: 100%; }
.assignment-two-poster-heading {
  position: absolute; z-index: 3; inset: 0 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start;
  margin: 0; padding: clamp(18px, 2.4vw, 32px);
  color: #fff; background: linear-gradient(to bottom, rgba(255,255,255,.18) 0%, rgba(255,255,255,.1) 48%, rgba(255,255,255,0) 100%);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  transition: opacity .5s ease, visibility .5s ease;
}
.assignment-two-poster-heading h3 {
  margin: 0; font-size: clamp(22px, 2vw, 30px); font-weight: 400; letter-spacing: -.045em;
}
.assignment-two-poster-heading p { margin: 1px 0 0; color: #aaa; font-size: 12px; line-height: 1.55; }
.assignment-two-poster-viewer { position: relative; overflow: hidden; background: #050505; }
.assignment-two-poster-viewer::after {
  content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 clamp(18px, 3vw, 46px) rgba(0,0,0,.48);
  background: linear-gradient(to bottom, rgba(0,0,0,.12), transparent 12%, transparent 86%, rgba(0,0,0,.3));
  opacity: .72; transition: opacity .55s ease;
}
.poster-inline-viewport {
  max-height: none; overflow: hidden; scrollbar-width: thin;
  scrollbar-color: #777 #080808; overscroll-behavior: contain;
}
.poster-inline-viewport img {
  display: block; width: 100%; height: auto; margin: 0 auto;
  filter: brightness(.58); transition: width .75s cubic-bezier(.16,1,.3,1), filter .55s ease;
}
.assignment-two-poster.is-expanded .poster-inline-viewport {
  max-height: min(82vh, 920px); overflow: auto; cursor: grab; user-select: none; touch-action: pan-x pan-y;
}
.assignment-two-poster.is-expanded .poster-inline-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.assignment-two-poster.is-expanded .poster-inline-viewport img { pointer-events: none; }
.assignment-two-poster.is-expanded .poster-inline-viewport img { width: 145%; max-width: none; filter: brightness(.9); }
.assignment-two-poster.is-expanded .assignment-two-poster-heading {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.assignment-two-poster.is-expanded .assignment-two-poster-viewer::after { opacity: 0; }
.poster-inline-toggle {
  position: absolute; z-index: 4; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 58px; height: 58px; padding: 0;
  border: 1px solid rgba(255,255,255,.32); border-radius: 50%;
  color: rgba(255,255,255,.9); background: rgba(0,0,0,.28); cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.75,.25,1), color .35s ease, background-color .35s ease;
}
.poster-inline-icon { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; }
.poster-inline-toggle:hover, .poster-inline-toggle:focus-visible {
  transform: translate(-50%, -50%) scale(1.16); color: #fff; background: rgba(0,0,0,.42);
}
.assignment-two-poster.is-expanded .poster-inline-toggle {
  position: absolute; display: grid; left: auto; right: 14px; top: 14px; margin: 0;
  width: 46px; height: 46px; transform: none; background: rgba(0,0,0,.72);
}
.assignment-two-poster.is-expanded .poster-inline-icon { transform: rotate(180deg); }
.model-study { min-width: 0; }
.model-study-heading {
  display: block; min-height: 116px; margin-bottom: 24px; color: #fff;
}
.model-study-heading h3 {
  margin: 0; font-size: clamp(24px, 2.8vw, 40px); font-weight: 400;
  line-height: 1; letter-spacing: -.05em;
}
.model-study-heading p { max-width: 330px; margin: 14px 0 0; color: #aaa; font-size: 12px; line-height: 1.55; }
.model-study .project-browser { width: 100%; min-width: 0; padding: 0; overflow: hidden; }
.model-study .project-preview-main { aspect-ratio: 4 / 5; overflow: hidden; }
.model-study .project-preview-main > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.62) saturate(.72);
}
.model-study .project-preview-reel {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3);
  grid-template-rows: clamp(78px, 7vw, 102px); justify-content: start;
  gap: 16px; width: 100%; max-width: 100%; min-height: 122px;
  margin-top: 24px; padding: 10px 8px 14px;
  overflow-x: auto; overflow-y: hidden; scroll-padding-inline: 8px;
}
.model-study .project-preview-reel::after { display: none; }
.model-study .project-preview-thumb {
  width: 100%; height: 100%; min-width: 0; aspect-ratio: auto !important; scroll-snap-align: start;
}
.model-study .project-preview-thumb img { object-fit: cover; object-position: center; }
.model-study .project-preview-thumb img { filter: brightness(.44) saturate(.62); }
.model-study-windows .model-study-heading h3 { color: rgba(255,255,255,.82); }
.model-study-windows .model-study-heading p,
.model-study-windows .assignment-two-poster-heading p { color: rgba(255,255,255,.46); }
.model-study-windows .model-study,
.model-study-windows .assignment-two-poster { transition: opacity .55s ease; }
.model-study-windows:hover .model-study,
.model-study-windows:hover .assignment-two-poster { opacity: .5; }
.model-study-windows .model-study:hover,
.model-study-windows .model-study:focus-within,
.model-study-windows .assignment-two-poster:hover,
.model-study-windows .assignment-two-poster:focus-within { opacity: 1; }
.int713-study-windows { grid-template-columns: 1fr; }
.int713-study-windows .assignment-two-poster { grid-column: 1; }
.int713-gallery-study { grid-column: 1; min-width: 0; }
.int713-gallery-study .model-study-heading { min-height: 0; margin: 0 0 clamp(24px, 3vw, 42px); }
.int713-gallery-study .model-study-heading p { max-width: 520px; }
.int713-gallery-study .project-browser { width: 100%; padding: 0; }
.int713-gallery-study .project-preview-main { background: #080808; }
.int713-gallery-study .project-preview-main > img { object-fit: contain; }
.model-study .project-preview-main:hover > img,
.model-study .project-preview-main:focus-within > img { filter: brightness(1) saturate(1); }
.model-study .project-preview-thumb:hover img,
.model-study .project-preview-thumb:focus-visible img { filter: brightness(.9) saturate(.9); }
.project-coffee-table .project-hero {
  display: grid; place-items: center; min-height: min(78vh, 860px); background: #000;
}
.project-coffee-table .project-hero img {
  width: 100%; height: min(78vh, 860px); object-fit: contain;
}
.project-gallery-item.is-gallery-hidden { display: none; }
.project-browser {
  grid-column: 1; overflow: hidden; padding: clamp(28px, 4vw, 64px);
  background: #000;
}
.project-preview-main {
  position: relative; background: #000;
  transition: opacity .45s ease;
}
.project-preview-main > img {
  transform: scale(.9); filter: brightness(.62) saturate(.8);
  transition: transform .65s cubic-bezier(.2,.72,.2,1), filter .5s ease;
}
.project-preview-main:hover > img,
.project-preview-main:focus-within > img {
  transform: scale(1); filter: brightness(1) saturate(1);
}
.project-preview-main::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(0,0,0,.12); transition: background-color .5s ease;
}
.project-preview-main:hover::after,
.project-preview-main:focus-within::after { background: rgba(0,0,0,0); }
.project-more {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  padding: 18px 24px; border: 0; color: #fff; background: transparent;
  font: 500 clamp(23px, 2.6vw, 40px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: -.045em; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.75,.25,1), letter-spacing .35s ease;
}
.project-more:hover, .project-more:focus-visible {
  transform: translate(-50%, -50%) scale(1.24); letter-spacing: -.02em;
}
.project-more:focus-visible { outline: 1px solid #fff; outline-offset: 5px; }
.project-more--wordless { width: 76px; height: 76px; padding: 0; }
.project-preview-reel {
  grid-column: 1; display: flex; align-items: center; justify-content: safe center;
  gap: clamp(28px, 4vw, 64px); width: 100%;
  margin-top: clamp(30px, 4vw, 62px); padding: 0;
  background: #000;
  overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity;
  scrollbar-width: thin; scrollbar-color: #777 #000; touch-action: pan-x;
}
.project-preview-reel::after { content: ""; flex: 0 0 1px; }
.project-preview-thumb {
  position: relative; flex: 0 0 auto; height: clamp(130px, 16vw, 225px);
  padding: 0; overflow: hidden; border: 0; background: #eee; cursor: pointer;
  scroll-snap-align: start;
  transition: opacity .45s ease;
}
.project-preview-thumb img {
  display: block; width: 100%; height: 100%; object-fit: contain;
  filter: brightness(.48) saturate(.7); transition: transform .4s ease, filter .45s ease;
}
.project-preview-thumb::after {
  content: ""; position: absolute; inset: 0; border: 1px solid transparent;
  z-index: 1; transition: border-color .25s ease, background-color .25s ease;
}
.project-preview-number {
  position: absolute; z-index: 2; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: #fff; font: 500 clamp(19px, 2vw, 30px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: -.045em; text-shadow: 0 1px 12px rgba(0,0,0,.42);
  transition: transform .35s cubic-bezier(.2,.75,.25,1), letter-spacing .35s ease;
}
.project-preview-thumb:hover img, .project-preview-thumb:focus-visible img {
  transform: scale(1.035); filter: brightness(1) saturate(1);
}
.project-preview-thumb:hover .project-preview-number,
.project-preview-thumb:focus-visible .project-preview-number {
  transform: translate(-50%, -50%) scale(1.24); letter-spacing: -.02em;
}
.project-preview-thumb:hover::after, .project-preview-thumb:focus-visible::after {
  border-color: #111; background: rgba(255,255,255,.05);
}
.project-preview-thumb:focus-visible { outline: 2px solid #000; outline-offset: 2px; }
.project-browser:hover .project-preview-main,
.project-browser:hover .project-preview-thumb { opacity: .28; }
.project-browser .project-preview-main:hover,
.project-browser .project-preview-main:focus-within,
.project-browser .project-preview-thumb:hover,
.project-browser .project-preview-thumb:focus-visible { opacity: 1; }
.lightbox-trigger { cursor: zoom-in; }
.project-gallery-item:not(:first-child) .lightbox-trigger:focus-visible {
  outline: 2px solid #000; outline-offset: -2px;
}

.lightbox {
  width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0;
  padding: 0; border: 0; color: #fff; background: rgba(0, 0, 0, .96);
}
.lightbox::backdrop { background: rgba(0, 0, 0, .96); }
.lightbox[open] {
  display: grid; grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
}
.lightbox-stage {
  width: 100%; height: 100vh; min-width: 0; padding: 72px 0 28px;
  overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.lightbox-image-wrap {
  width: 100%; min-height: calc(100vh - 115px); flex: 0 0 auto;
  display: flex; justify-content: center; align-items: center;
}
.lightbox-stage img {
  display: block; max-width: 100%; max-height: calc(100vh - 100px);
  width: auto; height: auto; object-fit: contain; cursor: zoom-in;
  transform-origin: center; opacity: 1;
  transition: transform .18s ease-out, opacity .65s ease;
  touch-action: none; user-select: none; -webkit-user-drag: none;
  will-change: transform;
}
.lightbox-stage img.is-changing { opacity: 0; }
.lightbox-stage img.is-zoomed { cursor: grab; }
.lightbox-stage img.is-panning { cursor: grabbing; transition: none; }
.lightbox-count { margin: 12px 0 0; font-size: 12px; letter-spacing: .08em; }
.lightbox-caption {
  max-width: 620px; margin: 7px 20px 0; color: #aaa;
  font-size: 12px; line-height: 1.4; text-align: center;
}
.lightbox-close, .lightbox-nav {
  position: relative; z-index: 2; color: #fff; background: transparent; border: 0;
  font: inherit; cursor: pointer;
}
.lightbox-close {
  position: fixed; top: 19px; right: 25px; width: 44px; height: 44px;
  font-size: 34px; font-weight: 300; line-height: 1;
}
.lightbox-tools {
  position: fixed; z-index: 3; top: 20px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 4px; padding: 4px;
  background: rgba(35, 35, 35, .9); border: 1px solid rgba(255,255,255,.2);
}
.lightbox-tools button {
  min-width: 38px; height: 34px; padding: 0 10px; color: #fff;
  background: transparent; border: 0; font: inherit; cursor: pointer;
}
.lightbox-tools button:hover { background: rgba(255,255,255,.12); }
.lightbox-tools button:focus-visible { outline: 1px solid #fff; }
.lightbox-zoom-level { min-width: 54px; text-align: center; font-size: 12px; }
.lightbox-gesture-hint { display: none; }
.lightbox-nav { width: 100%; height: 80px; font-size: 26px; }
.lightbox-close:hover, .lightbox-nav:hover { opacity: .62; }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 1px solid #fff; outline-offset: -4px; }
.lightbox-open { overflow: hidden; }

@media (min-width: 768px) and (max-width: 1100px) {
  .project-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  :root { --gutter: clamp(24px, 7vw, 34px); --header-height: 78px; }
  html { scroll-padding-top: var(--header-height); }
  body {
    min-height: 100dvh; font-size: 15px; line-height: 1.7;
    background-attachment: scroll; opacity: 0;
    transition: opacity .42s cubic-bezier(.22,.65,.3,1);
  }
  body.page-ready { opacity: 1; }
  body.page-leaving { opacity: 0; pointer-events: none; }
  body::before { display: none; }
  body:not(.contact-page) { padding-bottom: calc(34px + env(safe-area-inset-bottom)); }
  .site-name { font-size: 18px; }
  .site-header { height: calc(var(--header-height) + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top); }
  .menu-button { display: block; z-index: 2; cursor: pointer; touch-action: manipulation; }
  .primary-nav {
    display: none; position: fixed; inset: 0; min-height: 100dvh;
    background-color: var(--paper); background-image: var(--paper-grain); background-size: 180px 180px;
    padding: calc(25vh + env(safe-area-inset-top)) var(--gutter) calc(12vh + env(safe-area-inset-bottom));
    flex-direction: column; align-items: center; gap: 18px; font-size: 27px;
  }
  .primary-nav a { min-width: 160px; min-height: 48px; display: grid; place-items: center; }
  .menu-open .primary-nav { display: flex; }
  .menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .home-hero {
    min-height: calc(100svh - var(--header-height) - env(safe-area-inset-top));
    padding: 32px var(--gutter) 54px; justify-content: center;
  }
  .home-page .home-hero {
    min-height: calc(100svh - var(--header-height) - env(safe-area-inset-top) - 190px);
    margin-bottom: 190px;
  }
  .home-hero h1 { margin-bottom: 20px; }
  .hero-image { width: 100%; aspect-ratio: 4/3; }
  .home-about { grid-template-columns: 1fr; padding: 64px var(--gutter) 88px; gap: 44px; }
  .portrait { min-height: 0; max-height: none; aspect-ratio: 4/5; }
  .home-work { padding: 88px var(--gutter) 120px; }
  .project-grid--three, .project-grid--two, .project-grid--four, .project-grid--all { grid-template-columns: 1fr; }
  .project-grid--two, .project-grid--four, .project-grid--all { gap: 58px; }
  .section-heading { align-items: start; flex-direction: column; gap: 16px; margin-bottom: 48px; }
  .about-page { padding-top: 42px; padding-bottom: 104px; grid-template-columns: 1fr; gap: 48px; }
  .about-photo { width: min(100%, 300px); min-height: 0; margin: 0 auto; aspect-ratio: 2/3; }
  .about-text { padding-bottom: 60px; }
  .contact-main { min-height: calc(100dvh - var(--header-height)); padding: 64px var(--gutter) 96px; place-items: start; align-content: center; }
  .contact-card h1 { margin-bottom: 62px; }
  .contact-documents { grid-template-columns: 1fr; }
  .contact-document { min-height: 92px; }
  .contact-socials { grid-template-columns: 1fr; gap: 18px; }
  .work-page { padding-top: 46px; padding-bottom: 132px; }
  .work-heading { margin: 10px 0 62px; }
  .work-heading .text-link { position: static; margin-top: 18px; }
  .work-categories { grid-template-columns: 1fr; gap: 34px; }
  .category {
    height: auto; aspect-ratio: 4/3; overflow: hidden; background: #000; border: 1px solid #000;
  }
  .category img { bottom: 0; height: 100%; background: #000; }
  .category::before { bottom: 0; }
  .category::after { display: none; }
  .category span { position: relative; left: auto; top: auto; transform: none; }
  body.work-directory-page .work-description-panel {
    display: grid; inset: 34px 0 0; padding: 22px var(--gutter) calc(22px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr; align-content: center; gap: 9px;
    overflow-y: auto; overscroll-behavior: contain;
  }
  body.work-directory-page.category-description-active .site-footer { height: 238px; }
  body.work-directory-page .work-description-label { margin: 0; align-self: auto; }
  body.work-directory-page .work-description-copy { font-size: 16px; line-height: 1.42; }
  body:not(.contact-page) .site-footer { bottom: -1px; padding: 62px var(--gutter) calc(34px + env(safe-area-inset-bottom)); }
  .gallery-page { padding-top: 56px; padding-bottom: 120px; }
  .gallery-heading { align-items: start; flex-direction: column; gap: 28px; margin-bottom: 82px; }
  .gallery-heading h1 { font-size: clamp(44px, 14vw, 64px); overflow-wrap: anywhere; }
  .directory-page { padding-top: 56px; }
  .directory-heading { gap: 36px; margin-bottom: 88px; }
  .directory-kicker { margin-bottom: 20px; }
  .directory-heading h1 { max-width: 100%; font-size: clamp(48px, 12vw, 72px); line-height: .88; overflow-wrap: anywhere; }
  .directory-page .project-meta h2 { min-height: 0; font-size: 17px; }
  .directory-groups { gap: 112px; }
  .directory-section-heading { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 34px; padding-bottom: 20px; }
  .directory-section-heading h2 { gap: 13px; }
  .directory-section-heading p { line-height: 1.5; }
  .project-page { padding-top: 56px; padding-bottom: 140px; }
  .project-intro { grid-template-columns: 1fr; gap: 44px; margin-bottom: 74px; }
  .project-intro h1 { font-size: clamp(42px, 13vw, 66px); }
  .project-natural-building .project-intro > div,
  .project-natural-building .project-intro > div > p { width: 100%; max-width: 100%; }
  .project-natural-building .project-intro,
  .project-natural-building .course-hero,
  .project-natural-building .course-stages {
    width: calc(100vw - (2 * var(--gutter))); max-width: calc(100vw - (2 * var(--gutter)));
  }
  .project-natural-building .project-intro h1 {
    max-width: 100%; font-size: clamp(38px, 11.5vw, 54px); overflow-wrap: anywhere;
  }
  .project-natural-building .project-intro p { overflow-wrap: anywhere; }
  .project-int-713 .project-intro h1 { font-size: clamp(32px, 9vw, 46px); overflow-wrap: anywhere; }
  .project-intro > div > p { line-height: 1.75; }
  .project-location { margin-bottom: 28px; }
  .course-hero { margin-bottom: 110px; }
  .course-hero img { max-height: none; }
  .course-stage + .course-stage { margin-top: 120px; }
  .course-stage-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .course-stage-heading > p { margin: 0; }
  .course-stage-heading h2 { font-size: clamp(34px, 10vw, 50px); }
  .project-int-713 .course-stage-heading h2 { font-size: clamp(28px, 7.8vw, 38px); overflow-wrap: anywhere; }
  .course-stage-heading div > p { line-height: 1.65; }
  .model-study-windows {
    grid-template-columns: 1fr; gap: 86px; padding: 32px var(--gutter) 42px;
    margin-inline: calc(var(--gutter) * -1);
  }
  .assignment-two-poster { width: min(76%, 460px); margin-bottom: 16px; }
  .assignment-two-poster.is-expanded { width: 100%; }
  .assignment-two-poster-heading { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .assignment-two-poster-heading p { max-width: 420px; }
  .assignment-two-poster.is-expanded .poster-inline-viewport img { width: 190%; }
  .poster-inline-viewport { max-height: 72vh; }
  .model-study-heading { min-height: 0; margin-bottom: 24px; }
  .model-study-heading h3 { font-size: 30px; }
  .model-study-heading p { max-width: 420px; line-height: 1.6; }
  .model-study .project-browser {
    width: 100%; margin-inline: 0; padding: 0;
  }
  .model-study .project-preview-reel {
    grid-auto-columns: calc((100% - 24px) / 3); grid-template-rows: min(30vw, 126px);
    gap: 12px; min-height: 0;
    margin-top: 30px; padding: 8px 2px 14px;
  }
  .project-access { width: 100%; min-height: 92px; justify-content: center; margin-top: 34px; padding: 22px; }
  .project-gallery { grid-template-columns: 1fr; gap: 36px; }
  .project-gallery-item, .project-gallery-item:nth-child(3n + 1) { grid-column: 1; }
  .project-browser {
    padding: 30px var(--gutter) 38px;
    margin-inline: calc(var(--gutter) * -1);
    width: calc(100% + (var(--gutter) * 2));
  }
  .project-preview-main > img { transform: none; filter: brightness(.62) saturate(.8); }
  .project-preview-main::after { background: rgba(0,0,0,.04); }
  .project-more { min-width: 112px; min-height: 56px; }
  .project-preview-reel { gap: 30px; }
  .project-preview-reel {
    justify-content: flex-start; margin-top: 38px; padding-bottom: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .project-preview-thumb { height: min(42vw, 180px); scroll-snap-align: center; }
  .project-preview-thumb img { filter: brightness(.48) saturate(.7); }
  .lightbox { height: 100dvh; max-height: 100dvh; }
  .lightbox[open] { display: block; }
  .lightbox-stage { height: 100dvh; padding: 68px 12px 92px; }
  .lightbox-image-wrap { min-height: calc(100dvh - 190px); }
  .lightbox-stage img { max-width: 100%; max-height: calc(100dvh - 190px); }
  .lightbox-count { margin-top: 10px; }
  .lightbox-caption { max-height: 42px; margin-top: 5px; overflow: auto; }
  .lightbox-close {
    top: calc(10px + env(safe-area-inset-top)); right: 10px;
    width: 48px; height: 48px;
  }
  .lightbox-tools { top: calc(14px + env(safe-area-inset-top)); left: 12px; transform: none; }
  .lightbox-nav {
    position: fixed; z-index: 4; bottom: calc(16px + env(safe-area-inset-bottom));
    width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.24);
    background: rgba(35,35,35,.88);
  }
  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }
  .lightbox-zoom-reset { display: none; }
  .lightbox-zoom-level { min-width: 44px; }
  .lightbox-gesture-hint {
    display: block; position: fixed; z-index: 3;
    left: 50%; top: calc(62px + env(safe-area-inset-top)); transform: translateX(-50%);
    margin: 0; color: rgba(255,255,255,.58); font-size: 10px;
    letter-spacing: .08em; white-space: nowrap; pointer-events: none;
  }
}

@media (max-width: 460px) {
  .work-categories { grid-template-columns: 1fr; }
  body:not(.contact-page) .site-footer {
    height: 190px; padding: 58px 24px calc(24px + env(safe-area-inset-bottom));
    flex-direction: row; align-items: end; justify-content: space-between; gap: 18px;
  }
  body:not(.contact-page) .footer-social { gap: 11px; font-size: 12px; }
  body:not(.contact-page) .footer-social a { grid-template-columns: 92px 21px; gap: 8px; }
  body:not(.contact-page) .footer-social .instagram { width: 21px; height: 21px; }
  body:not(.contact-page) .footer-contact { gap: 12px; font-size: 12px; text-align: right; }
  body.work-directory-page { padding-bottom: calc(34px + env(safe-area-inset-bottom)); }
  body.work-directory-page .site-footer {
    height: 190px; padding-inline: 24px;
    flex-direction: row; align-items: end; justify-content: space-between; gap: 18px;
  }
  body.work-directory-page .footer-contact { text-align: right; }
}

@media (hover: none), (pointer: coarse) {
  .project-image img {
    transform: none;
    filter: brightness(1) saturate(1);
  }
  .category img { filter: brightness(.62) saturate(.8); }
  .project-browser:hover .project-preview-main,
  .project-browser:hover .project-preview-thumb { opacity: 1; }
  .category:hover::before { background: rgba(0,0,0,.07); }
  .category:hover img { transform: scale(.88); filter: blur(0) brightness(.62) saturate(.8); }
  body:not(.contact-page) .site-footer:hover,
  body:not(.contact-page) .site-footer:focus-within {
    transform: translate3d(0, calc(100% - 34px), 0);
  }
  body:not(.contact-page) .site-footer.is-open,
  body:not(.contact-page) .site-footer.is-open:hover,
  body:not(.contact-page) .site-footer.is-open:focus-within { transform: translate3d(0, 0, 0); }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  body { opacity: 1; transition: none; }
}
