:root {
  --black: #000;
  --gallery: #111;
  --white: #fff;
  --soft: rgba(255,255,255,.72);
  --faint: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }
body.inner-page { background: var(--gallery); }

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 20;
  pointer-events: none;
}
.site-header.inner { position: sticky; height: 150px; background: linear-gradient(var(--gallery) 0%, rgba(17,17,17,.94) 55%, rgba(17,17,17,0) 100%); }
.brand {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.brand-mark { width: 38px; height: auto; display: block; opacity: .96; }
.brand-name {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .64em;
  padding-left: .64em;
  line-height: 1;
  opacity: .92;
}

.design-link {
  pointer-events: auto;
  position: absolute;
  left: 56px;
  top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .18em;
  line-height: 1;
  padding: 8px 6px;
  opacity: .7;
  transition: opacity .2s ease;
}
.design-link:hover { opacity: 1; }

.menu-toggle {
  pointer-events: auto;
  position: absolute;
  right: 56px;
  top: 8px;
  width: 35px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  margin: 9px 0;
  opacity: .86;
}

.hero {
  min-height: 118vh;
  display: block;
  padding: 0;
  background: #000;
}
.hero-figure {
  position: sticky;
  top: 0;
  margin: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 4vw 68px;
}
.hero-figure img {
  width: auto;
  height: auto;
  max-width: min(99vw, 1885px);
  max-height: 94vh;
  display: block;
  object-fit: contain;
  filter: contrast(1.03);
}
.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 22px;
  font-weight: 100;
  opacity: .68;
}
.intro-section {
  min-height: 55vh;
  display: grid;
  place-items: center;
  padding: 12vh 9vw;
  color: var(--soft);
  text-align: center;
}
.intro-section p { max-width: 620px; font-size: clamp(13px, 1.25vw, 20px); font-weight: 300; line-height: 1.55; }

.site-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.site-menu.open { opacity: 1; visibility: visible; }
.site-menu a {
  text-transform: uppercase;
  font-size: clamp(11px, 1.05vw, 16px);
  letter-spacing: .34em;
  padding-left: .34em;
  font-weight: 300;
  opacity: .82;
  transition: opacity .2s ease;
}
.site-menu a:hover { opacity: 1; }
.menu-close {
  position: absolute;
  right: 54px;
  top: 34px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 40px;
  font-weight: 100;
  cursor: pointer;
}

.page-content {
  width: min(1180px, 86vw);
  margin: 0 auto;
  padding: 8vh 0 18vh;
}
.page-content.narrow { width: min(700px, 84vw); }
h1 { font-size: 13px; letter-spacing: .64em; padding-left: .64em; text-transform: uppercase; font-weight: 300; margin: 0 0 11vh; }
p { color: var(--soft); font-size: 18px; line-height: 1.8; font-weight: 300; }
.small-note { font-size: 13px; text-transform: uppercase; letter-spacing: .25em; margin-top: 8vh; }
.work-list { display: grid; gap: 18vh; }
.work-item {
  display: grid;
  justify-items: center;
  gap: 34px;
}
.work-item img {
  width: min(900px, 90vw);
  height: auto;
  display: block;
}
.work-meta {
  width: min(900px, 90vw);
  text-align: left;
}
.work-meta h2 { font-size: 12px; letter-spacing: .34em; text-transform: uppercase; font-weight: 300; margin: 0 0 24px; }
.work-code { font-size: 9px !important; letter-spacing: .30em !important; color: rgba(255,255,255,.36) !important; margin-bottom: 12px !important; }
.work-meta p { font-size: 11px; letter-spacing: .14em; text-transform: lowercase; margin: 0 0 8px; color: rgba(255,255,255,.54); line-height: 1.35; }
.work-meta .dimension-line { color: rgba(255,255,255,.48); margin-top: 4px; }
.site-footer {
  padding: 34px 0;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 720px) {
  .site-header { top: 26px; }
  .brand-mark { width: 31px; }
  .brand-name { font-size: 10px; letter-spacing: .46em; padding-left: .46em; }
  
.design-link {
  pointer-events: auto;
  position: absolute;
  left: 56px;
  top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .18em;
  line-height: 1;
  padding: 8px 6px;
  opacity: .7;
  transition: opacity .2s ease;
}
.design-link:hover { opacity: 1; }

.menu-toggle { right: 24px; top: 5px; width: 28px; }
  .design-link { left: 22px; top: 0; font-size: 10px; }
  .hero { min-height: 112vh; }
  .hero-figure { padding: 108px 4vw 56px; }
  .hero-figure img { max-width: 99vw; max-height: 88vh; }
  .scroll-cue { bottom: 26px; }
  .site-menu a { font-size: 14px; letter-spacing: .26em; }
  .menu-close { right: 24px; top: 20px; }
  .page-content { padding-top: 4vh; }
}


.edition-list { display: grid; gap: 12vh; }
.edition-item { display: grid; grid-template-columns: minmax(180px, 420px) minmax(220px, 1fr); gap: 56px; align-items: center; }
.edition-item img { width: 100%; height: auto; display: block; }
.edition-item h2, .collection-item h2 { font-size: 12px; letter-spacing: .34em; text-transform: uppercase; font-weight: 300; margin: 0 0 22px; }
.edition-item p, .collection-item p { font-size: 11px; letter-spacing: .14em; text-transform: lowercase; color: rgba(255,255,255,.58); margin: 0 0 7px; line-height: 1.35; }
.edition-item .dimension-line { color: rgba(255,255,255,.48); margin-top: 2px; }
.collection-list { display: grid; gap: 9vh; }
.contact-link { display: inline-block; margin-top: 28px; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--white); }

@media (max-width: 720px) {
  .edition-item { grid-template-columns: 1fr; gap: 28px; }
}

.contact-intro {
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
}

@media (max-width: 820px) {
  .work-item { gap: 28px; }
  .work-meta {
    text-align: left;
    width: min(900px, 90vw);
    margin: 0 auto;
  }
}
