@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;1,400&display=swap");

:root {
  --ink: #41413f;
  --ink-strong: #252523;
  --muted: #73736e;
  --active: #e6deca;
  --active-hover: #ddd2b6;
  --menu: #f2f2f0;
  --line: #d8d6cf;
  --paper: #ffffff;
  --page-width: 1579px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-width: var(--page-width);
  color: var(--ink);
  background: var(--paper);
}

body {
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: 15px;
  animation: page-enter 280ms ease;
}

body.has-open-dialog { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 12px;
  color: #fff;
  background: var(--ink-strong);
  font-size: 13px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.page-canvas {
  position: relative;
  width: var(--page-width);
  min-height: var(--page-height);
  margin: 0 auto;
  overflow: visible;
  background: var(--paper);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
}

.mobile-nav-toggle,
.mobile-nav-close,
.mobile-nav-scrim { display: none; }

.brand {
  position: absolute;
  top: 46px;
  left: 64px;
  width: 150px;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  transition: color 180ms ease, transform 240ms var(--ease);
}

.brand:hover { color: #171716; transform: translateY(-1px); }

.brand:focus-visible,
.nav-row:focus-visible,
.artwork-button:focus-visible,
.instagram-link:focus-visible,
.exhibition-link button:focus-visible,
.contact-actions a:focus-visible,
.contact-actions button:focus-visible,
.dialog-close:focus-visible,
.lightbox-close:focus-visible,
.lightbox-control:focus-visible {
  outline: 2px solid #6c624b;
  outline-offset: 3px;
}

.site-nav {
  position: absolute;
  top: 182px;
  left: 64px;
  width: 141px;
  background: var(--menu);
  box-shadow: 0 0 0 1px rgba(65, 65, 63, 0.035);
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 141px;
  height: 29px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 400 15px/29px Raleway, Arial, sans-serif;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, background-color 180ms ease, padding 220ms var(--ease);
}

.nav-row::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 2px;
  background: #8b8066;
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 160ms ease, transform 220ms var(--ease);
}

.nav-row:hover { padding-left: 26px; color: var(--ink-strong); background: #ebe9e3; }
.nav-row:hover::before { opacity: 0.45; transform: scaleY(1); }

.nav-row[aria-current="page"],
.works-trigger.is-active {
  color: #323230;
  background: var(--active);
}

.nav-row[aria-current="page"]::before,
.works-trigger.is-active::before { opacity: 1; transform: scaleY(1); }

.works-menu { position: relative; }

.works-menu::after {
  position: absolute;
  top: -9px;
  left: 100%;
  display: none;
  width: 10px;
  height: 48px;
  content: "";
}

.works-menu:hover::after,
.works-menu:focus-within::after,
.works-menu.is-open::after { display: block; }

.works-trigger { justify-content: space-between; }

.menu-indicator {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.65;
  transform: rotate(-45deg);
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.works-menu:hover .menu-indicator,
.works-menu:focus-within .menu-indicator,
.works-menu.is-open .menu-indicator { opacity: 1; transform: rotate(45deg); }

.works-submenu {
  position: absolute;
  z-index: 30;
  top: -9px;
  left: 141px;
  width: 228px;
  padding: 10px 0 12px;
  border: 1px solid #dedbd3;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(32, 31, 27, 0.11), 0 3px 10px rgba(32, 31, 27, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 260ms var(--ease);
}

.works-menu:hover .works-submenu,
.works-menu:focus-within .works-submenu,
.works-menu.is-open .works-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.works-heading {
  padding: 2px 18px 9px;
  color: #858178;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.work-link {
  width: 100%;
  height: 34px;
  padding: 0 18px;
  color: #565550;
  font-size: 13px;
  line-height: 34px;
}

.work-link:hover { padding-left: 22px; }
.work-arrow { opacity: 0; transform: translateX(-5px); transition: opacity 160ms ease, transform 220ms var(--ease); }
.work-link:hover .work-arrow, .work-link:focus-visible .work-arrow { opacity: 0.7; transform: translateX(0); }

.content-layer { position: static; }

.content-item {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  min-height: var(--h);
  margin: 0;
  color: var(--ink);
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-size: var(--size, 15px);
  font-weight: var(--weight, 400);
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
}

.content-item a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.page-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.artwork-button {
  height: var(--h);
  min-height: var(--h);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f4f4f2;
  box-shadow: 0 0 0 1px rgba(33, 33, 31, 0);
  cursor: zoom-in;
  isolation: isolate;
  transition: box-shadow 220ms ease, transform 280ms var(--ease);
}

.artwork-button:hover {
  z-index: 3;
  box-shadow: 0 14px 36px rgba(30, 29, 25, 0.12), 0 0 0 1px rgba(33, 33, 31, 0.08);
}

.artwork-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f4f2;
  transition: transform 520ms var(--ease), filter 260ms ease;
}

.artwork-button:hover .artwork-image { transform: scale(1.012); filter: contrast(1.015); }

.image-view-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px 6px;
  color: #292927;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(20, 20, 18, 0.08);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.artwork-button:hover .image-view-label,
.artwork-button:focus-visible .image-view-label { opacity: 1; transform: translateY(0); }

.content-h1:not(.page-title), .content-h2, .content-h3, .content-h4 { font-weight: 400; }

.bio-content { line-height: 1.4; }
.bio-content p { margin: 0; }
.bio-intro { margin-bottom: 24px !important; }
.bio-cv-title { margin: 31px 0 18px; font-size: 15px; font-weight: 400; }
.bio-content h2 { margin: 28px 0 16px; font-size: 15px; font-weight: 400; }
.bio-content .cv-entry { margin-bottom: 18px; }

.exhibition-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Raleway, Arial, sans-serif;
  line-height: 1.5;
}

.exhibition-link > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exhibition-link button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 4px 0;
  border: 0;
  color: var(--ink-strong);
  background: transparent;
  font: 500 13px/1 Raleway, Arial, sans-serif;
  cursor: pointer;
}

.exhibition-link button span { transition: transform 220ms var(--ease); }
.exhibition-link button:hover span { transform: translateX(4px); }

.contact-panel { color: var(--ink-strong); }
.contact-panel p { margin: 0; }

.contact-kicker {
  margin-bottom: 19px !important;
  color: #817b6e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel h1 {
  max-width: 590px;
  margin: 0 0 22px;
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.12;
}

.contact-copy {
  max-width: 570px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 31px;
}

.contact-actions a,
.contact-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border-radius: 2px;
  font: 500 13px/1 Raleway, Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.contact-primary { gap: 11px; border: 1px solid var(--ink-strong); color: #fff; background: var(--ink-strong); }
.contact-primary span { transition: transform 220ms var(--ease); }
.contact-primary:hover { background: #080808; transform: translateY(-1px); }
.contact-primary:hover span { transform: translate(2px, -2px); }
.contact-secondary { border: 1px solid #bdb9af; color: var(--ink); background: #fff; }
.contact-secondary:hover { border-color: #77736b; background: #f6f5f1; transform: translateY(-1px); }
.contact-address { margin-top: 19px !important; color: var(--muted); font-size: 13px; }
.contact-address a { text-underline-offset: 3px; }
.copy-status { min-height: 18px; margin-top: 7px !important; color: #6c654f; font-size: 11px; }

.site-footer {
  position: absolute;
  top: var(--footer-y);
  left: 252px;
  width: 939px;
  height: 58px;
}

.footer-rule { display: block; width: 100%; border-top: 1px solid var(--line); }

.instagram-link {
  position: absolute;
  top: 16px;
  right: 49px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  transition: background-color 180ms ease, transform 220ms var(--ease);
}

.instagram-link:hover { background: #efede7; transform: translateY(-1px); }
.instagram-link img { display: block; width: 16px; height: 16px; object-fit: contain; }

.statement-dialog {
  width: min(680px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  padding: 45px 52px 49px;
  overflow: auto;
  border: 1px solid #d8d3c7;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 34px 90px rgba(20, 19, 16, 0.25), 0 7px 24px rgba(20, 19, 16, 0.12);
  font: 400 16px/1.7 Raleway, Arial, sans-serif;
}

.statement-dialog[open] { animation: dialog-enter 280ms var(--ease); }
.statement-dialog::backdrop { background: rgba(29, 28, 25, 0.62); backdrop-filter: blur(3px); }

.dialog-topline { display: flex; align-items: center; justify-content: space-between; color: #777267; }
.dialog-topline > span { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.dialog-rule { margin: 17px 0 29px; border-top: 1px solid #dcd8cf; }
.statement-dialog h2 { margin: 0 0 25px; color: var(--ink-strong); font-family: "Times New Roman", Times, serif; font-size: 38px; font-weight: 400; line-height: 1.1; }
.statement-dialog p { margin: 0 0 19px; }
.statement-dialog p:last-child { margin-bottom: 0; }

.dialog-close,
.lightbox-close {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  font: 400 26px/1 Arial, sans-serif;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 220ms var(--ease);
}

.dialog-close:hover { border-color: #d5d0c5; background: #f4f2ed; transform: rotate(4deg); }

.artwork-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #f7f6f2;
  background: #181817;
}

.artwork-lightbox[open] { animation: lightbox-enter 220ms ease; }
.artwork-lightbox::backdrop { background: #181817; }

.lightbox-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-page-title { color: rgba(255, 255, 255, 0.72); font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.lightbox-close { color: #fff; font-size: 30px; }
.lightbox-close:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); }

.lightbox-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 78px;
  height: calc(100vh - 72px);
}

.lightbox-control {
  align-self: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font: 400 23px/1 Arial, sans-serif;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 220ms var(--ease);
}

.lightbox-previous { grid-column: 1; justify-self: end; }
.lightbox-next { grid-column: 3; justify-self: start; }
.lightbox-control:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.08); transform: scale(1.04); }

.lightbox-figure {
  display: grid;
  grid-column: 2;
  grid-template-rows: minmax(0, 1fr) 52px;
  min-width: 0;
  height: 100%;
  margin: 0;
}

.lightbox-stage { display: flex; min-height: 0; padding: 24px 28px 12px; align-items: center; justify-content: center; }

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: scale(1);
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.lightbox-stage img.is-loading { opacity: 0.18; transform: scale(0.992); }

.lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 29px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.05em;
}

@keyframes dialog-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lightbox-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 800px) {
  html, body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body.has-open-nav { overflow: hidden; }

  .page-canvas {
    display: flex;
    width: 100%;
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding: 0 20px 24px;
    flex-direction: column;
  }

  .site-header {
    position: relative;
    z-index: 40;
    width: 100%;
    height: 84px;
    flex: 0 0 84px;
  }

  .brand {
    top: 28px;
    left: 0;
    width: auto;
    font-size: 20px;
    line-height: 21px;
  }

  .mobile-nav-toggle {
    position: absolute;
    top: 36px;
    right: 0;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 5px 3px;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    justify-content: center;
    border: 0;
    color: var(--ink-strong);
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: width 180ms ease, transform 220ms var(--ease);
  }

  .mobile-nav-toggle span:nth-child(2) { width: 16px; }
  .mobile-nav-toggle:hover span:nth-child(2),
  .mobile-nav-toggle:focus-visible span:nth-child(2) { width: 22px; }

  .mobile-nav-toggle:focus-visible,
  .mobile-nav-close:focus-visible {
    outline: 2px solid #6c624b;
    outline-offset: 3px;
  }

  .mobile-nav-scrim {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(26, 26, 24, 0.43);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    left: auto;
    width: min(77vw, 340px);
    height: 100vh;
    height: 100dvh;
    padding: 118px 36px 42px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 48px rgba(31, 30, 27, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    transition: transform 320ms var(--ease), opacity 220ms ease, visibility 320ms ease;
  }

  body.has-open-nav .mobile-nav-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.has-open-nav .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav-close {
    position: absolute;
    top: 55px;
    right: 21px;
    display: block;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-close span {
    position: absolute;
    top: 16px;
    left: 5px;
    width: 25px;
    height: 1.5px;
    background: var(--ink-strong);
    transform: rotate(45deg);
  }

  .mobile-nav-close span:last-child { transform: rotate(-45deg); }

  .nav-row {
    width: 100%;
    height: 55px;
    min-height: 55px;
    padding: 0;
    font: 400 19px/1.2 "Times New Roman", Times, serif;
  }

  .nav-row::before { display: none; }
  .nav-row:hover { padding-left: 0; background: transparent; }

  .nav-row[aria-current="page"],
  .works-trigger.is-active {
    color: #175d9d;
    background: transparent;
  }

  .works-menu::after,
  .works-menu:hover::after,
  .works-menu:focus-within::after,
  .works-menu.is-open::after { display: none; }

  .works-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 300ms var(--ease), opacity 180ms ease, padding 260ms var(--ease), visibility 180ms ease;
  }

  .works-menu:hover .works-submenu,
  .works-menu:focus-within .works-submenu {
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .works-menu.is-open .works-submenu {
    max-height: 330px !important;
    padding: 4px 0 9px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .works-heading { display: none; }
  .work-link {
    width: 100%;
    height: 43px;
    min-height: 43px;
    padding-left: 18px;
    overflow: hidden;
    font-size: 16px;
    line-height: 43px;
    text-overflow: ellipsis;
  }

  .work-link:hover { padding-left: 18px; }
  .work-arrow { display: none; }
  .menu-indicator { transform: rotate(45deg); }
  .works-menu.is-open .menu-indicator { transform: rotate(225deg); }

  .content-layer {
    display: flex;
    width: 100%;
    margin-bottom: 56px;
    flex-direction: column;
    gap: 14px;
  }

  body[data-page="home"] .content-layer,
  body[data-page="s-projects-basic"] .content-layer,
  body[data-page="contact"] .content-layer { padding-top: 28px; }

  body[data-page="home"] .brand,
  body[data-page="s-projects-basic"] .brand,
  body[data-page="contact"] .brand { top: 40px; }

  body[data-page="home"] .mobile-nav-toggle,
  body[data-page="s-projects-basic"] .mobile-nav-toggle,
  body[data-page="contact"] .mobile-nav-toggle { top: 48px; }

  body[data-page="home"] .content-layer { gap: 0; }

  .content-item {
    position: static;
    width: 100%;
    min-height: 0;
    height: auto;
    font-size: min(var(--size, 13px), 13px);
    line-height: 1.5;
  }

  .page-title {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
  }

  .artwork-button { height: auto; min-height: 0; }
  .artwork-image { width: 100%; height: auto; object-fit: contain; }
  .image-view-label { display: none; }
  .exhibition-link { margin: 8px 0; }

  body[data-page="s-projects-basic"] .artwork-button {
    width: min(220px, 79%);
    align-self: center;
  }

  .bio-content { font-size: 12.5px; line-height: 1.55; }
  .bio-intro { margin-bottom: 20px !important; }
  .bio-cv-title { margin: 28px 0 15px; font-size: 13px; }
  .bio-content h2 { margin: 25px 0 13px; font-size: 12px; letter-spacing: 0.03em; }
  .bio-content .cv-entry { margin-bottom: 15px; }

  .contact-kicker { margin-bottom: 15px !important; }
  .contact-panel h1 { margin-bottom: 18px; font-size: 28px; line-height: 1.12; }
  .contact-copy { font-size: 14px; line-height: 1.6; }
  .contact-actions { margin-top: 25px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions a, .contact-actions button { width: 100%; }

  .site-footer {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 54px;
    flex: 0 0 54px;
  }

  .instagram-link {
    top: 15px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .instagram-link:hover { transform: translate(-50%, -1px); }

  .statement-dialog { width: calc(100vw - 28px); max-height: calc(100vh - 28px); padding: 31px 27px 34px; }
  .dialog-rule { margin: 13px 0 23px; }
  .statement-dialog h2 { font-size: 33px; }
  .statement-dialog p { font-size: 15px; line-height: 1.65; }

  .artwork-lightbox { height: 100dvh; }
  .lightbox-toolbar { height: 58px; padding: 0 13px 0 17px; }
  .lightbox-layout { grid-template-columns: 44px minmax(0, 1fr) 44px; height: calc(100dvh - 58px); }
  .lightbox-page-title { max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .lightbox-control { width: 36px; height: 36px; border: 0; font-size: 20px; }
  .lightbox-stage { padding: 12px 4px 6px; }
  .lightbox-figure { grid-template-rows: minmax(0, 1fr) 62px; }
  .lightbox-figure figcaption { align-items: flex-start; gap: 10px; padding: 12px 8px 0; }
  .lightbox-figure figcaption span:first-child { max-width: 70%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
