:root{
  --gold:#e5d49a;
  --ivory:#ebe6dc;
  --muted:#bcb6ab;
  --bg:#111;
  --header-h:48px;
  --page-pad:clamp(18px,4vw,56px);
}
*{box-sizing:border-box}
html,body{margin:0;background:#111;color:var(--ivory)}
body{
  font-family:"Lucida Grande","Lucida Sans Unicode",Arial,sans-serif;
  background:
    radial-gradient(ellipse at 50% 27%, #363532 0%, #292826 30%, #1c1c1b 59%, #101010 100%);
}
button,a{font:inherit}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--header-h);
  z-index:2000;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(90deg,#090705 0%,#0d0b08 22%,#1b1815 42%,#211e1b 50%,#1b1815 58%,#0d0b08 78%,#090705 100%);
  border-bottom:0;
}
.brand-wrap{
  position:relative;
  display:inline-block;
  line-height:0;
}
.brand-link{display:block}
.brand-logo{
  display:block;
  width:210px;
  height:auto;
}
.menu{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  position:absolute;
  right:calc(100% + 20px);
  top:50%;
  transform:translateY(-50%);
  width:16px;
  height:16px;
  cursor:pointer;
}
.menu span{
  display:block;
  position:absolute;
  left:0;
  width:16px;
  height:1px;
  background:var(--gold);
}
.menu span:nth-child(1){top:2px}
.menu span:nth-child(2){top:7px}
.menu span:nth-child(3){top:12px}

.search-button{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  position:absolute;
  left:calc(100% + 14px);
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  cursor:pointer;
}
.search-icon{
  position:absolute;
  width:14px;
  height:14px;
  border:1px solid var(--gold);
  border-radius:50%;
  left:6px;
  top:5px;
  opacity:.9;
}
.search-icon::after{
  content:"";
  position:absolute;
  width:8px;
  height:1px;
  background:var(--gold);
  transform:rotate(45deg);
  transform-origin:left center;
  left:10px;
  top:11px;
}

.item-page{
  width:min(100%,1160px);
  margin:0 auto;
  padding:calc(var(--header-h) + 58px) var(--page-pad) 30px;
}

.item-intro{
  text-align:center;
  padding:0 7%;
}
.item-intro h1{
  max-width:950px;
  margin:0 auto 42px;
  font-size:27px;
  line-height:1.34;
  font-weight:400;
  letter-spacing:.05px;
  color:var(--ivory);
}

.gallery{
  width:min(100%,1040px);
  margin:0 auto;
}
.main-image-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  background:rgba(0,0,0,.08);
}
.main-image{
  display:block;
  width:100%;
  height:auto;
  max-height:1180px;
  object-fit:contain;
}

.thumb-row{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr)) 34px;
  gap:10px;
  align-items:stretch;
}
.thumb{
  appearance:none;
  border:0;
  padding:0;
  background:#080808;
  cursor:pointer;
  overflow:hidden;
  aspect-ratio:1.23/1;
  opacity:.93;
}
.thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.thumb:hover,.thumb.active{opacity:1}
.thumb.active{outline:1px solid rgba(229,212,154,.5)}
.gallery-next{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--gold);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.purchase-block{
  text-align:center;
  margin-top:38px;
}
.availability{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  margin:0;
  color:var(--gold);
  font-size:16px;
}
.availability span,
.availability strong{font-weight:400}
.availability i{
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--gold);
  display:inline-block;
}
.reference{
  margin:12px 0 0;
  color:var(--gold);
  font-size:10px;
  letter-spacing:.2px;
}
.enquire-button{
  width:min(100%,365px);
  min-height:52px;
  margin:30px auto 0;
  border:1px solid var(--gold);
  outline:1px solid rgba(229,212,154,.45);
  outline-offset:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  color:var(--gold);
  text-decoration:none;
  font-size:12px;
}
.enquire-button span{
  position:absolute;
  margin-left:290px;
  font-size:14px;
}

.section-rule{
  width:min(100%,885px);
  height:1px;
  background:rgba(229,212,154,.68);
  margin:62px auto 42px;
}

.description{
  width:min(100%,700px);
  margin:0 auto;
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
  text-align:left;
}
.description p{margin:0 0 18px}

@media(max-width:900px){
  .item-page{
    padding-top:calc(var(--header-h) + 42px);
  }
  .item-intro h1{
    font-size:clamp(20px,3vw,25px);
    margin-bottom:32px;
  }
  .thumb-row{
    grid-template-columns:repeat(5,minmax(0,1fr)) 26px;
    gap:7px;
  }
}

@media(max-width:719px){
  :root{--header-h:44px}
  .brand-logo{width:185px}
  .menu{right:calc(100% + 14px)}
  .search-button{left:calc(100% + 10px)}

  .item-page{
    padding:calc(var(--header-h) + 32px) 16px 64px;
  }
  .item-intro{
    padding:0 5px;
  }
  .item-intro h1{
    font-size:20px;
    line-height:1.4;
    margin-bottom:26px;
  }
  .thumb-row{
    margin-top:12px;
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .thumb:nth-of-type(5){display:none}
  .gallery-next{display:none}
  .purchase-block{margin-top:30px}
  .availability{font-size:14px}
  .enquire-button{
    width:min(92%,365px);
    min-height:48px;
  }
  .section-rule{
    margin:50px auto 34px;
  }
  .description{
    font-size:12px;
    line-height:1.75;
  }
}

@media(max-width:430px){
  .brand-logo{width:166px}
  .item-intro h1{font-size:18px}
  .thumb-row{grid-template-columns:repeat(3,minmax(0,1fr))}
  .thumb:nth-of-type(4){display:none}
}

.item-intro h1{
  font-size:18px !important;
}

.thumb{
  aspect-ratio:1.23/1;
  background:#0b0b0b;
  display:flex;
  align-items:center;
  justify-content:center;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:contain !important;
}

@media (min-width:720px){
  .main-image-wrap{
    height:70vh;
    min-height:440px;
    max-height:760px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .main-image{
    width:auto !important;
    height:auto !important;
    max-width:100% !important;
    max-height:100% !important;
    object-fit:contain !important;
  }
}

@media (max-width:719px){
  .main-image-wrap{
    height:auto;
    min-height:0;
    max-height:none;
  }

  .main-image{
    width:100% !important;
    height:auto !important;
    max-height:none !important;
  }
}

.thumb-row{
  align-items:center;
}

.thumb{
  aspect-ratio:auto !important;
  background:transparent !important;
  overflow:visible;
  align-self:center;
}

.thumb img{
  width:100% !important;
  height:auto !important;
  object-fit:initial !important;
  display:block;
}

.thumb.active{
  outline:1px solid rgba(229,212,154,.5);
  outline-offset:2px;
}

.thumb-row{
  align-items:start !important;
}

.thumb{
  align-self:start !important;
}

.thumb img{
  vertical-align:top;
}

.thumb-strip-wrap{
  position:relative;
  display:grid;
  grid-template-columns:28px minmax(0,1fr) 28px;
  gap:8px;
  align-items:start;
  margin-top:22px;
}

.thumb-row{
  display:flex !important;
  gap:10px;
  align-items:flex-start !important;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding:2px 2px 8px;
  margin:0 !important;
}
.thumb-row::-webkit-scrollbar{
  display:none;
}

.thumb{
  flex:0 0 clamp(135px, 17vw, 190px);
  width:auto !important;
  aspect-ratio:auto !important;
  background:transparent !important;
  align-self:flex-start !important;
  overflow:visible;
}

.thumb img{
  width:100% !important;
  height:auto !important;
  display:block;
  object-fit:initial !important;
}

.thumb-scroll{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--gold);
  font-size:25px;
  line-height:1;
  padding:7px 0 0;
  cursor:pointer;
  opacity:.85;
}
.thumb-scroll:hover{
  opacity:1;
}

@media(max-width:719px){
  .thumb-strip-wrap{
    grid-template-columns:minmax(0,1fr);
    gap:0;
    margin-top:12px;
  }

  .thumb-scroll{
    display:none;
  }

  .thumb-row{
    gap:8px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    padding-bottom:8px;
  }

  .thumb{
    flex:0 0 38vw;
    scroll-snap-align:start;
  }
}

@media(max-width:430px){
  .thumb{
    flex-basis:46vw;
  }
}

@media(min-width:720px){
  .thumb-scroll{
    padding-top:0 !important;
    margin-top:58px;
  }
}

.lightbox-trigger{
  cursor:zoom-in;
}

body.lightbox-open{
  overflow:hidden;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:5000;
  display:none;
  background:rgba(4,4,4,.985);
  color:var(--ivory);
}

.lightbox.open{
  display:grid;
  grid-template-columns:64px minmax(0,1fr) 64px;
  grid-template-rows:1fr;
  align-items:center;
}

.lightbox-stage{
  width:100%;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:28px 24px;
}

.lightbox-image{
  display:block;
  max-width:100%;
  max-height:calc(100vh - 56px);
  width:auto;
  height:auto;
  object-fit:contain;
  cursor:zoom-in;
  user-select:none;
  -webkit-user-drag:none;
}

.lightbox.is-zoomed .lightbox-stage{
  display:block;
  overflow:auto;
  padding:32px;
}

.lightbox.is-zoomed .lightbox-image{
  max-width:none;
  max-height:none;
  width:auto;
  height:auto;
  margin:auto;
  cursor:zoom-out;
}

.lightbox-nav,
.lightbox-close,
.lightbox-zoom{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--gold);
  cursor:pointer;
  z-index:2;
}

.lightbox-nav{
  font-size:34px;
  line-height:1;
  opacity:.82;
  align-self:center;
}
.lightbox-nav:hover,
.lightbox-close:hover,
.lightbox-zoom:hover{
  opacity:1;
}

.lightbox-prev{grid-column:1}
.lightbox-stage{grid-column:2}
.lightbox-next{grid-column:3}

.lightbox-close{
  position:absolute;
  top:16px;
  right:20px;
  font-size:27px;
  line-height:1;
  opacity:.85;
}

.lightbox-zoom{
  position:absolute;
  right:22px;
  bottom:18px;
  font-size:10px;
  letter-spacing:.6px;
  opacity:.8;
}

@media(max-width:719px){
  .lightbox.open{
    grid-template-columns:42px minmax(0,1fr) 42px;
  }

  .lightbox-stage{
    padding:18px 8px;
  }

  .lightbox-image{
    max-height:calc(100vh - 36px);
  }

  .lightbox-nav{
    font-size:29px;
  }

  .lightbox-close{
    top:10px;
    right:12px;
    font-size:25px;
  }

  .lightbox-zoom{
    right:14px;
    bottom:12px;
  }
}

.description .dimensions{
  margin:28px 0 22px;
}

.description .dimensions p{
  margin:0 0 4px;
}

.description-ref{
  margin-top:20px !important;
}

.description{
  width:min(100%, 640px) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:left !important;
  font-size:12px !important;
  line-height:1.78 !important;
}

.description p{
  margin:0 0 16px !important;
}

.description .dimensions{
  margin:26px 0 20px !important;
}

.description .dimensions p{
  margin:0 0 3px !important;
}

.dl-enquire-button{
  box-sizing:border-box;
  display:flex !important;
  align-items:center;
  justify-content:center;
  width:min(100%, 460px) !important;
  min-height:54px;
  margin:26px auto 0 !important;
  padding:12px 28px !important;

  border:1px solid #191713 !important;
  outline:1px solid rgba(210,190,126,.28);
  outline-offset:1px;

  background:
    linear-gradient(
      to bottom,
      #d7c590 0%,
      #c7b37d 48%,
      #9d8b59 100%
    ) !important;

  color:#15130f !important;
  font-size:18px !important;
  font-weight:400 !important;
  line-height:1.15 !important;
  letter-spacing:.2px !important;
  text-align:center;
  text-decoration:none !important;
  text-shadow:0 1px 0 rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.20);
}

.dl-enquire-button:hover,
.dl-enquire-button:focus-visible{
  filter:brightness(1.06);
}

@media(max-width:719px){
  .dl-enquire-button{
    width:min(100%, 390px) !important;
    min-height:48px;
    padding:11px 20px !important;
    font-size:16px !important;
  }
}

.dl-enquire-button{
  width:min(100%, 360px) !important;
}

@media(max-width:719px){
  .dl-enquire-button{
    width:min(100%, 320px) !important;
  }
}


.dl-enquire-button{
  width:min(100%, 180px) !important;
  min-height:36px !important;
}

@media(max-width:719px){
  .dl-enquire-button{
    width:min(100%, 180px) !important;
    min-height:36px !important;
  }
}

.description{
  border-top-width:1px !important;
}

.section-rule{
  height:0.5px !important;
}

@media(min-width:720px){
  .thumb-row{
    align-items:stretch !important;
  }

  .thumb{
    flex:0 0 190px !important;
    height:118px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
    background:transparent !important;
  }

  .thumb img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    display:block !important;
  }

  .thumb-scroll{
    margin-top:43px !important;
  }
}

@media(max-width:719px){
  .thumb{
    height:92px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  .thumb img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
  }
}

html,
body{
  background-color:#0c0906 !important;
}

body{
  position:relative;
  background-image:url("assets/scroll-light-background.png") !important;
  background-repeat:no-repeat !important;
  background-position:center top !important;
  background-size:cover !important;
  background-attachment:fixed !important;
}

main,
.page,
.item-page,
.item-shell,
.gallery-section,
.item-details,
.description{
  background-color:transparent !important;
}

@media(max-width:719px){
  body{
    background-attachment:scroll !important;
    background-position:center top !important;
  }
}

.main-image{
  box-sizing:border-box;
  border:0.5px solid rgba(0,0,0,.92) !important;
  box-shadow:
    0 2px 10px rgba(0,0,0,.46),
    0 0 2px rgba(0,0,0,.72) !important;
}

.lightbox-image{
  border:0 !important;
  box-shadow:none !important;
}

.thumb-row { gap: 6px !important; }
@media (max-width:719px) {
  .thumb-row { gap: 6px !important; }
}

.thumb-row { gap: 12px !important; }
@media (max-width:719px) {
  .thumb-row { gap: 8px !important; }
}

@media(min-width:720px){
  .thumb-row{
    gap:10px !important;
    align-items:stretch !important;
  }

  .thumb{
    flex:0 0 auto !important;
    width:auto !important;
    height:118px !important;
    padding:0 !important;
    display:block !important;
    overflow:hidden !important;
  }

  .thumb img{
    width:auto !important;
    height:118px !important;
    max-width:none !important;
    object-fit:initial !important;
    display:block !important;
  }
}

@media(max-width:719px){
  .thumb-row{
    gap:8px !important;
  }

  .thumb{
    flex:0 0 auto !important;
    width:auto !important;
    height:92px !important;
    padding:0 !important;
    display:block !important;
    overflow:hidden !important;
  }

  .thumb img{
    width:auto !important;
    height:92px !important;
    max-width:none !important;
    object-fit:initial !important;
    display:block !important;
  }
}

.thumb-strip-wrap{
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box;
}

@media(max-width:719px){
  .thumb-strip-wrap{
    width:100% !important;
    max-width:100% !important;
  }
}

@media(min-width:720px){
  .thumb-strip-wrap{
    margin-right:0 !important;
  }
}

@media(min-width:720px){
  .thumb-strip-wrap{
    width:100% !important;
    max-width:1040px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

@media(max-width:719px){
  .thumb-strip-wrap{
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

.thumb{
  box-sizing:border-box !important;
  border:0 !important;
}

.thumb.active{
  outline:none !important;
  box-shadow:
    inset 0 0 0 1px rgba(196,168,102,.95) !important;
}

.thumb.active img{
  display:block !important;
}

@media(min-width:720px){
  .thumb-strip-wrap{
    width:100% !important;
    max-width:860px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

.thumb.active{
  outline:none !important;
  box-shadow:
    inset 0 0 0 2px rgba(220,196,126,1),
    inset 0 0 0 3px rgba(0,0,0,.45) !important;
}

@media(min-width:720px){
  .thumb-strip-wrap{
    width:100% !important;
    max-width:900px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

.thumb{
  opacity:.90 !important;
  transition:opacity .16s ease, filter .16s ease !important;
}

.thumb:hover{
  opacity:1 !important;
  filter:brightness(0.84) !important;
}

.thumb.active{
  opacity:1 !important;
  filter:none !important;
}

.thumb.active:hover{
  filter:brightness(0.84) !important;
}

.thumb{
  box-shadow:
    0 0 0 .5px rgba(214,190,120,.42),
    0 2px 7px rgba(0,0,0,.48) !important;
}

.thumb:hover{
  box-shadow:
    0 0 0 .5px rgba(224,201,133,.62),
    0 3px 9px rgba(0,0,0,.56) !important;
}

.thumb.active{
  box-shadow:
    inset 0 0 0 2px rgba(220,196,126,1),
    inset 0 0 0 3px rgba(0,0,0,.45),
    0 0 0 .5px rgba(214,190,120,.52),
    0 2px 7px rgba(0,0,0,.48) !important;
}

.thumb.active:hover{
  box-shadow:
    inset 0 0 0 2px rgba(220,196,126,1),
    inset 0 0 0 3px rgba(0,0,0,.45),
    0 0 0 .5px rgba(224,201,133,.65),
    0 3px 9px rgba(0,0,0,.56) !important;
}

.thumb,
.thumb:hover{
  border:0.5px solid rgba(0,0,0,.92) !important;
  box-shadow:
    0 2px 10px rgba(0,0,0,.46),
    0 0 2px rgba(0,0,0,.72) !important;
}

.thumb.active,
.thumb.active:hover{
  border:0.5px solid rgba(0,0,0,.92) !important;
  box-shadow:
    inset 0 0 0 2px rgba(220,196,126,1),
    inset 0 0 0 3px rgba(0,0,0,.45),
    0 2px 10px rgba(0,0,0,.46),
    0 0 2px rgba(0,0,0,.72) !important;
}

.thumb-strip-wrap,
.thumb-row,
.gallery,
.gallery-main,
.gallery-section{
  background:none !important;
  background-image:none !important;
  background-color:transparent !important;
}

.thumb{
  background:transparent !important;
}

.main-image-wrap{
  background:none !important;
  background-image:none !important;
  background-color:transparent !important;
}

@media (min-width:1200px) and (min-height:760px){
  .main-image{
    max-height:64vh !important;
  }

  .main-image-wrap{
    margin-bottom:18px !important;
  }

  .thumb-strip-wrap{
    margin-top:0 !important;
  }
}

@media (min-width:1200px) and (min-height:950px){
  .main-image{
    max-height:68vh !important;
  }
}

@media (min-width:1200px) and (min-height:760px){
  .main-image{
    max-height:min(60vh, calc(100vh - 470px)) !important;
  }

  .main-image-wrap{
    margin-bottom:16px !important;
  }
}

@media (min-width:1200px) and (min-height:950px){
  .main-image{
    max-height:min(62vh, calc(100vh - 470px)) !important;
  }
}

@media (min-width:1200px) and (min-height:760px){
  .main-image-wrap{
    min-height:0 !important;
    height:auto !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    margin-top:0 !important;
    margin-bottom:18px !important;
  }

  .main-image{
    max-height:min(64vh, calc(100vh - 350px)) !important;
  }
}

@media (min-width:1200px) and (min-height:950px){
  .main-image{
    max-height:min(67vh, calc(100vh - 350px)) !important;
  }
}

.reference-links{
  width:min(900px, calc(100% - 48px));
  margin:56px auto 80px;
  text-align:center;
}
.reference-links-rule{
  width:100%;
  height:.5px;
  background:rgba(191,161,91,.72);
  margin:0 0 30px;
}
.reference-links h2{
  margin:0 0 28px;
  font-family:inherit;
  font-size:14px;
  font-weight:400;
  letter-spacing:.16em;
  color:#d1b26c;
  text-align:center;
}
.reference-links-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.reference-link-card{
  min-height:92px;
  padding:18px 20px;
  box-sizing:border-box;
  border:.5px solid rgba(191,161,91,.52);
  background:rgba(0,0,0,.10);
  text-decoration:none;
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-rows:auto auto;
  align-items:center;
  text-align:left;
  transition:background .18s ease,border-color .18s ease;
}
.reference-link-card:hover{
  background:rgba(255,255,255,.025);
  border-color:rgba(211,181,111,.82);
}
.reference-link-kicker{
  grid-column:1;
  grid-row:1;
  font-size:9px;
  letter-spacing:.14em;
  color:rgba(209,178,108,.76);
}
.reference-link-title{
  grid-column:1;
  grid-row:2;
  margin-top:7px;
  font-size:14px;
  letter-spacing:.02em;
  color:rgba(239,232,215,.94);
}
.reference-link-arrow{
  grid-column:2;
  grid-row:1 / span 2;
  padding-left:18px;
  font-size:17px;
  color:#d1b26c;
  transition:transform .18s ease;
}
.reference-link-card:hover .reference-link-arrow{
  transform:translateX(3px);
}
@media(max-width:719px){
  .reference-links{
    width:calc(100% - 32px);
    margin:44px auto 60px;
  }
  .reference-links-grid{
    grid-template-columns:1fr;
    gap:8px;
  }
  .reference-link-card{
    min-height:82px;
  }
}

.reference-links{
  width:min(900px, calc(100% - 48px)) !important;
  margin:56px auto 80px !important;
}

.reference-links-rule{
  height:.5px !important;
  background:rgba(191,161,91,.72) !important;
  margin-bottom:30px !important;
}

.reference-links h2{
  margin:0 0 30px !important;
}

.reference-links-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  column-gap:42px !important;
  row-gap:0 !important;
}

.reference-link-card{
  min-height:78px !important;
  padding:17px 2px 16px !important;
  border:0 !important;
  border-bottom:.5px solid rgba(191,161,91,.48) !important;
  background:transparent !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:1fr auto !important;
  grid-template-rows:auto auto !important;
  align-items:center !important;
  text-align:left !important;
}

.reference-link-card:hover{
  background:transparent !important;
  border-color:rgba(211,181,111,.82) !important;
}

.reference-link-kicker{
  font-size:9px !important;
  letter-spacing:.14em !important;
}

.reference-link-title{
  margin-top:7px !important;
  font-size:14px !important;
}

.reference-link-arrow{
  padding-left:18px !important;
  font-size:17px !important;
}

@media(max-width:719px){
  .reference-links{
    width:calc(100% - 32px) !important;
    margin:44px auto 60px !important;
  }

  .reference-links-grid{
    grid-template-columns:1fr !important;
    column-gap:0 !important;
  }

  .reference-link-card{
    min-height:74px !important;
  }
}

.reference-links-rule{
  background:#E5D49A !important;
}

.reference-links h2{
  color:#E5D49A !important;
}

.reference-link-kicker{
  color:#E5D49A !important;
}

.reference-link-card{
  border-bottom-color:#E5D49A !important;
}

.reference-link-card:hover{
  border-bottom-color:#E5D49A !important;
}

.reference-link-arrow{
  color:#E5D49A !important;
}

.return-origin{
  width:min(900px,calc(100% - 48px));
  margin:0 auto 72px;
  padding-top:30px;
  border-top:.5px solid #E5D49A;
  text-align:center;
}
.return-origin-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#E5D49A;
  text-decoration:none;
  font-size:11px;
  font-weight:400;
  letter-spacing:.15em;
  transition:opacity .16s ease;
}
.return-origin-link:hover{opacity:.72}
.return-origin-arrow{
  font-size:16px;
  line-height:1;
  transition:transform .16s ease;
}
.return-origin-link:hover .return-origin-arrow{transform:translateX(-3px)}
@media(max-width:719px){
  .return-origin{
    width:calc(100% - 32px);
    margin-bottom:54px;
    padding-top:26px;
  }
}

.reference-links{
  margin-bottom:30px !important;
}


.reference-links .reference-link-card{
  border-bottom-width:.5px !important;
  border-bottom-style:solid !important;
  border-bottom-color:rgba(229,212,154,.085) !important;
  transition:border-bottom-color 220ms ease !important;
}


.return-to-collection,
.back-to-collection,
.collection-return{
  color:#eee9df !important;
  text-shadow:none !important;
  border-bottom:.5px solid rgba(229,212,154,.085) !important;
  transition:color 220ms ease, border-bottom-color 220ms ease !important;
  background:transparent !important;
}

@media (hover:hover) and (pointer:fine){
  .return-to-collection:hover,
  .back-to-collection:hover,
  .collection-return:hover{
    color:#e5d49a !important;
    border-bottom-color:rgba(229,212,154,.62) !important;
    background:transparent !important;
  }
}

.return-to-collection:focus-visible,
.back-to-collection:focus-visible,
.collection-return:focus-visible{
  color:#e5d49a !important;
  border-bottom-color:rgba(229,212,154,.62) !important;
  outline:none !important;
}

/* Exact Item return-link selector */
.return-origin-link{
  color:#eee9df !important;
  text-shadow:none !important;
  border-bottom:.5px solid rgba(229,212,154,.085) !important;
  transition:color 220ms ease, border-bottom-color 220ms ease !important;
  background:transparent !important;
}
@media (hover:hover) and (pointer:fine){
  .return-origin-link:hover{
    color:#e5d49a !important;
    border-bottom-color:rgba(229,212,154,.62) !important;
    background:transparent !important;
  }
}
.return-origin-link:focus-visible{
  color:#e5d49a !important;
  border-bottom-color:rgba(229,212,154,.62) !important;
  outline:none !important;
}


/* =========================================================
   ITEM MASTER — FINAL LOCKED RETURN LINK INTERACTION
   =========================================================
   - RETURN TO COLLECTION / ARCHIVE / LIBRARY rests pale/ivory
   - quiet 0.5px gold rule at rest
   - text transitions to established gold on hover/focus
   - rule brightens to 62% gold on hover/focus
   - 220ms transition
   - no background wash, glow, movement or scaling
   ========================================================= */
.return-origin-link{
  color:#eee9df !important;
  text-shadow:none !important;
  border-bottom:.5px solid rgba(229,212,154,.085) !important;
  transition:color 220ms ease, border-bottom-color 220ms ease !important;
  background:transparent !important;
}
@media (hover:hover) and (pointer:fine){
  .return-origin-link:hover{
    color:#e5d49a !important;
    border-bottom-color:rgba(229,212,154,.62) !important;
    background:transparent !important;
  }
}
.return-origin-link:focus-visible{
  color:#e5d49a !important;
  border-bottom-color:rgba(229,212,154,.62) !important;
  outline:none !important;
}


/* =========================================================
   ITEM MASTER — FINAL LOCKED INTERACTIONS
   ========================================================= */

/* Photographic links: 16% darkening */
.main-image-wrap img,
.thumb img{
  transition:filter 220ms ease;
}
@media (hover:hover) and (pointer:fine){
  .main-image-wrap:hover img,
  .thumb:hover img{
    filter:brightness(.84);
  }
}

/* Explore the Library */
.reference-links .reference-link-kicker,
.reference-links .reference-link-title{
  color:#eee9df !important;
  text-shadow:none !important;
  transition:color 220ms ease !important;
}
.reference-links .reference-link-card{
  border-bottom:.5px solid rgba(229,212,154,.085) !important;
  transition:border-bottom-color 220ms ease !important;
}
@media (hover:hover) and (pointer:fine){
  .reference-links .reference-link-card:hover .reference-link-kicker,
  .reference-links .reference-link-card:hover .reference-link-title{
    color:#e5d49a !important;
  }
  .reference-links .reference-link-card:hover{
    border-bottom-color:rgba(229,212,154,.62) !important;
  }
}

/* Return to Collection / Archive / Library */
.return-origin-link{
  color:#eee9df !important;
  text-shadow:none !important;
  border-bottom:.5px solid rgba(229,212,154,.085) !important;
  transition:color 220ms ease, border-bottom-color 220ms ease !important;
  background:transparent !important;
}
@media (hover:hover) and (pointer:fine){
  .return-origin-link:hover{
    color:#e5d49a !important;
    border-bottom-color:rgba(229,212,154,.62) !important;
  }
}
.return-origin-link:focus-visible{
  color:#e5d49a !important;
  border-bottom-color:rgba(229,212,154,.62) !important;
  outline:none !important;
}

/* =========================================================
   DANIEL LUCIAN — LIGHTBOX
   CLEAN LOCKED FINAL
   =========================================================
   - full black viewport
   - fit-to-window on open
   - true pixel-level 100% maximum (HiDPI aware)
   - drag/pan at true 100%
   - fixed enlarged main arrows
   - pale controls at rest, gold on hover/focus
   - constrained larger thumbnail tray
   - secondary thumbnail scroll arrows
   - no visible captions or 100% diagnostic/control
   - reduced-motion support
   ========================================================= */

.dl-lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:grid;
  grid-template-columns:56px minmax(0,1fr) 56px;
  grid-template-rows:minmax(0,1fr) auto;
  background:#000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 275ms ease, visibility 0s linear 275ms;
}

.dl-lightbox.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:opacity 275ms ease;
}

html.dl-lightbox-open,
html.dl-lightbox-open body{
  overflow:hidden;
}

.dl-lightbox-viewport{
  grid-column:2;
  grid-row:1;
  position:relative;
  min-width:0;
  min-height:0;
  margin:14px 0 0;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:zoom-in;
  touch-action:none;
}

.dl-lightbox-viewport.is-pannable{cursor:grab;}
.dl-lightbox-viewport.is-dragging{cursor:grabbing;}
#dl-lightbox-viewport:focus{outline:none;}

.dl-lightbox-image{
  position:absolute;
  left:50%;
  top:50%;
  max-width:none;
  max-height:none;
  translate:-50% -50%;
  transform-origin:center center;
  user-select:none;
  -webkit-user-drag:none;
  will-change:transform;
  transition:transform 220ms ease;
}

.dl-lightbox-viewport.is-dragging .dl-lightbox-image{
  transition:none;
}

.dl-lightbox-close,
.dl-lightbox-nav{
  appearance:none;
  border:0;
  background:transparent;
  color:#b8b5af;
  -webkit-text-fill-color:#b8b5af;
  cursor:pointer;
  opacity:1;
  transition:color 220ms ease, -webkit-text-fill-color 220ms ease;
}

.dl-lightbox-close{
  position:absolute;
  z-index:5;
  top:12px;
  right:14px;
  width:42px;
  height:42px;
  padding:0;
  font-family:Arial,sans-serif;
  font-size:34px;
  font-weight:200;
  line-height:40px;
}

.dl-lightbox-nav{
  position:fixed;
  top:50vh;
  bottom:auto;
  z-index:5;
  width:72px;
  height:132px;
  padding:0;
  margin:0;
  transform:translateY(-50%);
  font-family:Georgia,serif;
  font-size:56px;
  line-height:1;
}

.dl-lightbox-prev{left:0;}
.dl-lightbox-next{right:0;}

@media (hover:hover) and (pointer:fine){
  .dl-lightbox-close:hover,
  .dl-lightbox-nav:hover{
    color:#e5d49a;
    -webkit-text-fill-color:#e5d49a;
  }
}

.dl-lightbox-close:focus-visible,
.dl-lightbox-nav:focus-visible{
  color:#e5d49a;
  -webkit-text-fill-color:#e5d49a;
  outline:none;
}

.dl-lightbox-bottom{
  grid-column:1 / -1;
  grid-row:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:10px 58px 16px;
  background:#000;
}

.dl-lightbox-caption{
  display:none;
}

.dl-lightbox-thumb-nav{
  width:min(840px,calc(100vw - 120px));
  display:grid;
  grid-template-columns:32px minmax(0,760px) 32px;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 auto;
}

.dl-lightbox-thumbs{
  width:100%;
  max-width:760px;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  scroll-behavior:smooth;
  padding:0 2px 2px;
  margin:0 auto;
  box-sizing:border-box;
}

.dl-lightbox-thumbs::-webkit-scrollbar{display:none;}

.dl-lightbox-thumb{
  flex:0 0 auto;
  width:78px;
  height:64px;
  padding:0;
  border:.5px solid transparent;
  background:transparent;
  opacity:.50;
  cursor:pointer;
  overflow:hidden;
  transition:opacity 220ms ease,border-color 220ms ease;
}

.dl-lightbox-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:none !important;
}

.dl-lightbox-thumb.is-active{
  opacity:1;
  border-color:rgba(229,212,154,.72);
}

@media (hover:hover) and (pointer:fine){
  .dl-lightbox-thumb:hover{opacity:.88;}
}

.dl-lightbox-thumb:focus-visible{
  opacity:1;
  border-color:rgba(229,212,154,.72);
  outline:none;
}

.dl-lightbox-thumb-scroll{
  appearance:none;
  border:0;
  background:transparent;
  width:32px;
  height:64px;
  padding:0;
  color:rgba(238,233,223,.42);
  font-family:Georgia,serif;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  transition:color 220ms ease,opacity 220ms ease;
}

.dl-lightbox-thumb-scroll[hidden]{visibility:hidden;}
.dl-lightbox-thumb-scroll:disabled{
  opacity:.16;
  cursor:default;
}

@media (hover:hover) and (pointer:fine){
  .dl-lightbox-thumb-scroll:not(:disabled):hover{
    color:#e5d49a;
  }
}

.dl-lightbox-thumb-scroll:focus-visible{
  color:#e5d49a;
  outline:none;
}

.dl-lightbox-trigger{cursor:zoom-in;}

@media (max-width:900px){
  .dl-lightbox-thumb-nav{
    width:calc(100vw - 80px);
    grid-template-columns:28px minmax(0,1fr) 28px;
    gap:6px;
  }
  .dl-lightbox-thumb-scroll{width:28px;}
}

@media (max-width:700px){
  .dl-lightbox{
    grid-template-columns:38px minmax(0,1fr) 38px;
  }
  .dl-lightbox-nav{
    width:48px;
    height:112px;
    font-size:42px;
  }
  .dl-lightbox-close{
    top:6px;
    right:5px;
  }
  .dl-lightbox-bottom{
    padding:7px 42px 10px;
  }
  .dl-lightbox-thumb-nav{
    width:calc(100vw - 54px);
    grid-template-columns:24px minmax(0,1fr) 24px;
    gap:4px;
  }
  .dl-lightbox-thumbs{
    min-height:62px;
    gap:6px;
  }
  .dl-lightbox-thumb{
    width:66px;
    height:54px;
  }
  .dl-lightbox-thumb-scroll{
    width:24px;
    height:54px;
    font-size:23px;
  }
}

@media (prefers-reduced-motion:reduce){
  .dl-lightbox,
  .dl-lightbox-image,
  .dl-lightbox-close,
  .dl-lightbox-nav,
  .dl-lightbox-thumb,
  .dl-lightbox-thumb-scroll{
    transition:none !important;
  }
}


/* ITEM PAGE THUMBNAIL SCROLL ARROWS */
.thumb-scroll-left,
.thumb-scroll-right{
  color:rgba(238,233,223,.56) !important;
  -webkit-text-fill-color:rgba(238,233,223,.56) !important;
  transition:color 220ms ease,-webkit-text-fill-color 220ms ease,opacity 220ms ease !important;
}

@media (hover:hover) and (pointer:fine){
  .thumb-scroll-left:not(:disabled):hover,
  .thumb-scroll-right:not(:disabled):hover{
    color:#e5d49a !important;
    -webkit-text-fill-color:#e5d49a !important;
  }
}

.thumb-scroll-left:focus-visible,
.thumb-scroll-right:focus-visible{
  color:#e5d49a !important;
  -webkit-text-fill-color:#e5d49a !important;
  outline:none !important;
}


/* =========================================================
   ITEM LIGHTBOX — MOBILE GESTURES
   ========================================================= */
#dl-lightbox,
#dl-lightbox *{
  -webkit-user-select:none !important;
  user-select:none !important;
  -webkit-user-drag:none !important;
}

#dl-lightbox{
  -webkit-touch-callout:none !important;
}

#dl-lightbox-viewport{
  -webkit-user-select:none !important;
  user-select:none !important;
  -webkit-touch-callout:none !important;
  touch-action:none !important;
}

@media (max-width:700px){
  .dl-lightbox-close{
    width:48px !important;
    height:48px !important;
    line-height:46px !important;
  }

  .dl-lightbox-nav{
    width:52px !important;
    min-width:52px !important;
  }

  .dl-lightbox-thumb-scroll{
    min-width:44px !important;
  }

  .dl-lightbox-thumbs{
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    touch-action:pan-x;
  }

  .dl-lightbox-thumb{
    scroll-snap-align:center;
  }
}


/* =========================================================
   ITEM PAGE THUMBNAILS — ALL BRIGHT / LIGHTBOX ENTRY
   Page thumbnails are equal entry points into the Lightbox.
   ========================================================= */
#thumbRow .thumb,
#thumbRow .thumb.active,
#thumbRow .thumb.is-active,
#thumbRow .thumb[aria-current="true"]{
  opacity:1 !important;
  filter:none !important;
  transition:filter 220ms ease,opacity 220ms ease !important;
}

#thumbRow .thumb img,
#thumbRow .thumb.active img,
#thumbRow .thumb.is-active img,
#thumbRow .thumb[aria-current="true"] img{
  filter:none !important;
  transition:filter 220ms ease !important;
}

@media (hover:hover) and (pointer:fine){
  #thumbRow .thumb:hover,
  #thumbRow .thumb.active:hover,
  #thumbRow .thumb.is-active:hover,
  #thumbRow .thumb[aria-current="true"]:hover{
    opacity:1 !important;
    filter:none !important;
  }

  #thumbRow .thumb:hover img,
  #thumbRow .thumb.active:hover img,
  #thumbRow .thumb.is-active:hover img,
  #thumbRow .thumb[aria-current="true"]:hover img{
    filter:brightness(.84) !important;
  }
}


/* =========================================================
   MOBILE LIGHTBOX — LOCKED FINAL ALIGNMENT
   ========================================================= */
@media (max-width:700px){

  /* Mobile inactive thumbnails: approved 60%; current remains 100%. */
  .dl-lightbox-thumb{
    opacity:.60 !important;
  }

  .dl-lightbox-thumb.is-active,
  .dl-lightbox-thumb[aria-current="true"]{
    opacity:1 !important;
  }

  /* Symmetrical thumbnail navigation:
     equal 44px arrow columns, equal gaps, centred tray. */
  .dl-lightbox-thumb-nav{
    width:calc(100vw - 28px) !important;
    max-width:none !important;
    grid-template-columns:44px minmax(0,1fr) 44px !important;
    gap:8px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    box-sizing:border-box !important;
  }

  .dl-lightbox-thumb-scroll{
    width:44px !important;
    min-width:44px !important;
    height:54px !important;
    padding:0 !important;
    justify-self:center !important;
  }

  .dl-lightbox-thumbs{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    box-sizing:border-box !important;
  }

  /* Main arrows remain fixed horizontally, but JS sets their top
     to the actual vertical centre of the displayed FIT image. */
  .dl-lightbox-nav{
    transform:translateY(-50%) !important;
  }
}


/* =========================================================
   ITEM PAGE — MOBILE FIXED BACKGROUND
   Keeps the decorative page background attached to the
   visible phone viewport while page content scrolls above it.
   ========================================================= */
@media (max-width:719px){

  html{
    background:#0b0a08 !important;
  }

  body{
    position:relative;
    background-image:none !important;
    background-color:transparent !important;
    background-attachment:scroll !important;
  }

  body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    width:100vw;
    height:100vh;
    height:100dvh;
    background:
      #0b0a08 url("assets/scroll-light-background.png")
      center center / cover no-repeat;
    pointer-events:none;
    transform:translateZ(0);
  }
}


/* =========================================================
   ITEM PAGE GALLERY — LOCKED BROWSE / LIGHTBOX ENTRY
   ========================================================= */
.main-image-wrap{
  position:relative;
}

.item-image-nav{
  position:absolute;
  top:50%;
  z-index:4;
  width:46px;
  height:64px;
  transform:translateY(-50%);
  border:0;
  padding:0;
  background:transparent;
  color:rgba(239,231,203,.72);
  font:300 52px/1 Georgia,"Times New Roman",serif;
  cursor:pointer;
  transition:color 220ms ease;
}

.item-image-prev{left:16px;}
.item-image-next{right:16px;}

.item-image-nav:hover,
.item-image-nav:focus-visible{
  color:#e5d49a;
}

.item-image-nav:focus-visible{
  outline:none;
}

@media(max-width:700px){
  .item-image-nav{
    width:42px;
    height:58px;
    font-size:46px;
  }
  .item-image-prev{left:8px;}
  .item-image-next{right:8px;}
}

/* =========================================================
   LIGHTBOX — STATIC THUMBNAIL TRAY WHEN ALL FIT
   ========================================================= */
.dl-lightbox-thumbs.fits-all{
  justify-content:center !important;
  overflow-x:hidden !important;
  scroll-behavior:auto !important;
}

.dl-lightbox-thumbs.has-overflow{
  justify-content:flex-start !important;
  overflow-x:auto !important;
  scroll-behavior:smooth !important;
}

.dl-lightbox-thumb-scroll[hidden]{
  display:block !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.dl-lightbox-thumb-nav{
  contain:layout paint;
}

.dl-lightbox-thumb{
  flex:0 0 auto !important;
}


/* =========================================================
   ITEM MASTER — FINAL REFERENCE / RULE / FOOTER SPACING
   ========================================================= */
.return-origin{
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding-top:30px !important;
  padding-bottom:72px !important;
}

.item-page{
  padding-bottom:30px !important;
}

html,
body{
  min-height:100%;
}

@media(max-width:700px){
  .return-origin{
    padding-bottom:54px !important;
  }
}

/* hide Item-page thumbnails until first-load geometry is settled */
#thumbRow.dl-thumb-pending{
  visibility: hidden;
}
#thumbRow.dl-thumb-ready{
  visibility: visible;
}

.archive-combined{margin:0;color:#e5d49a;font-size:14px;font-weight:400;letter-spacing:.02em;text-transform:none;}

/* ITEM GOLD LINES - APPROVED LIBRARY VISUAL MATCH 2026-08-21
   Structural item-page rules only.
*/
.section-rule{
  height:0 !important;
  background:none !important;
  border:0 !important;
  border-top:.5px solid rgba(229,212,154,.40) !important;
}

.return-origin{
  border-top:.5px solid rgba(229,212,154,.40) !important;
}
