:root {
  --nh-paper: #f2efe8;
  --nh-ink: #0c0c0b;
  --nh-ash: #8b8984;
  --nh-line: rgba(12, 12, 11, 0.2);
  --nh-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --nh-section: clamp(5rem, 11vw, 11rem);
  --nh-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--nh-paper);
  color: var(--nh-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--nh-ink);
  color: var(--nh-paper);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

.nh-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.45rem var(--nh-gutter);
  border-bottom: 0;
  background: rgba(242, 239, 232, 0.94);
  color: var(--nh-ink);
  backdrop-filter: blur(16px);
  transition: padding .45s var(--nh-ease), background .45s ease, color .35s ease;
}

.nh-site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: '';
  pointer-events: none;
  background: var(--nh-line);
  opacity: 1;
  transition: opacity .35s ease;
}

.admin-bar .nh-site-header {
  top: 32px;
}

.home:not(.nh-header-scrolled) .nh-site-header {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .48), rgba(0, 0, 0, 0));
  color: var(--nh-paper);
  backdrop-filter: none;
  box-shadow: none;
}

.home:not(.nh-header-scrolled) .nh-site-header::after {
  opacity: 0;
}

.nh-header-inner {
  width: 100%;
  max-width: 100% !important;
}

.nh-site-header .wp-block-site-title,
.nh-site-header .wp-block-site-title a,
.nh-site-header .wp-block-navigation a,
.nh-site-header .wp-block-navigation__responsive-container-open {
  color: inherit !important;
}

.nh-site-header .wp-block-site-title {
  position: relative;
  z-index: 1001;
  margin: 0;
  white-space: nowrap;
}

.nh-header-actions {
  gap: clamp(1rem, 2vw, 2.25rem) !important;
}

.nh-primary-nav .wp-block-navigation-item__content {
  position: relative;
  padding: .25rem 0;
}

.nh-primary-nav .wp-block-navigation-item__content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: '';
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--nh-ease);
}

.nh-primary-nav .wp-block-navigation-item__content:hover::after,
.nh-primary-nav .current-menu-item .wp-block-navigation-item__content::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nh-language-switcher {
  display: flex;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.nh-language-switcher a {
  color: inherit !important;
  opacity: .45;
}

.nh-language-switcher a[aria-current='page'],
.nh-language-switcher a:hover {
  opacity: 1;
}

.nh-main {
  min-height: 60vh;
}

.nh-page-main {
  box-sizing: border-box;
  padding: clamp(9rem, 15vw, 13rem) var(--nh-gutter) var(--nh-section);
}

.nh-page-main > .alignwide,
.nh-page-main > .wp-block-post-content {
  width: 100%;
  max-width: 1320px !important;
}

.nh-page-title {
  max-width: 12ch;
  margin: 0 0 clamp(3.5rem, 8vw, 8rem) !important;
  font-size: clamp(4rem, 10vw, 10rem) !important;
  font-weight: 400 !important;
  letter-spacing: -.045em;
  line-height: .82 !important;
}

.nh-kicker,
.nh-eyebrow {
  margin: 0 0 1.25rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Front page */
.nh-front-main {
  background: var(--nh-paper);
}

.nh-hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: #fff;
  place-items: end start;
}

.nh-hero-media,
.nh-hero-media::after {
  position: absolute;
  inset: 0;
}

.nh-hero-media {
  background: #292824;
}

.nh-hero-media::after {
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, .73) 0%, rgba(0, 0, 0, .25) 52%, rgba(0, 0, 0, .08) 100%), linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 55%);
}

.nh-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.035);
  animation: nhHeroIn 1.8s var(--nh-ease) both;
}

@keyframes nhHeroIn {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.035); }
}

.nh-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1320px);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10rem var(--nh-gutter) clamp(5rem, 9vw, 8rem);
}

.nh-hero-title {
  max-width: 8ch;
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(5.1rem, 13vw, 13rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .72;
}

.nh-hero-title span {
  display: block;
  margin-left: clamp(1.8rem, 9vw, 9rem);
}

.nh-hero-lede {
  max-width: 34rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0 clamp(1.8rem, 9vw, 9rem);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.nh-scroll-cue {
  position: absolute;
  right: var(--nh-gutter);
  bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.nh-scroll-cue::after {
  width: 4rem;
  height: 1px;
  content: '';
  background: currentColor;
}

.nh-manifesto {
  position: relative;
  display: grid;
  box-sizing: border-box;
  min-height: 92svh;
  padding: var(--nh-section) var(--nh-gutter);
  background: var(--nh-ink);
  color: var(--nh-paper);
  align-items: center;
}

.nh-manifesto-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.nh-manifesto blockquote {
  max-width: 14ch;
  margin: 0 auto;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(3.1rem, 7.7vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.nh-manifesto blockquote em {
  color: #b5b1a8;
  font-style: normal;
}

.nh-home-work {
  padding: var(--nh-section) var(--nh-gutter);
}

.nh-section-head {
  display: flex;
  width: min(100%, 1320px);
  margin: 0 auto clamp(3rem, 7vw, 7rem);
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.nh-section-head h2,
.nh-contact-cta h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .85;
}

.nh-text-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nh-discipline-panels {
  background: #d9d5cd;
}

.nh-discipline-panel {
  position: relative;
  display: grid;
  min-height: 90svh;
  overflow: hidden;
  color: #fff;
  align-items: end;
}

.nh-discipline-panel + .nh-discipline-panel {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.nh-discipline-panel img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: saturate(.88);
  transition: transform 1.2s var(--nh-ease), filter .8s ease;
}

.nh-discipline-panel::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 67%);
}

.nh-discipline-panel:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.nh-discipline-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1320px);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 4rem var(--nh-gutter);
  color: #fff;
  align-items: flex-end;
  justify-content: space-between;
}

.nh-discipline-content h2 {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .75;
}

.nh-discipline-content a {
  color: #fff;
}

.nh-exhibition-band {
  overflow: hidden;
  padding: var(--nh-section) 0;
  background: var(--nh-ink);
  color: var(--nh-paper);
}

.nh-exhibition-band .nh-section-head {
  padding: 0 var(--nh-gutter);
}

.nh-year-track {
  display: flex;
  width: max-content;
  margin: clamp(3rem, 6vw, 6rem) 0;
  gap: clamp(2rem, 5vw, 6rem);
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: .75;
  animation: nhMarquee 28s linear infinite;
}

.nh-year-track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 232, .55);
}

@keyframes nhMarquee {
  to { transform: translateX(-50%); }
}

.nh-contact-cta {
  display: grid;
  min-height: 75svh;
  box-sizing: border-box;
  padding: var(--nh-section) var(--nh-gutter);
  background: var(--nh-paper);
  place-items: center;
  text-align: center;
}

.nh-contact-cta-inner {
  display: grid;
  justify-items: center;
}

.nh-contact-cta h2 {
  max-width: 12ch;
  margin-bottom: 2.5rem;
}

/* Galleries */
.nh-works-intro {
  display: grid;
  max-width: 1320px;
  margin: calc(-1 * clamp(2rem, 5vw, 5rem)) auto clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr);
  gap: 3rem;
  align-items: end;
}

.nh-works-intro p {
  max-width: 34rem;
  margin: 0 0 .5rem auto;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.nh-gallery-filters {
  display: flex;
  max-width: 1320px;
  margin: 0 auto clamp(2.5rem, 6vw, 5rem);
  gap: .65rem;
  flex-wrap: wrap;
}

.nh-gallery-filters button {
  padding: .65rem 1rem;
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  background: transparent;
  color: var(--nh-ink);
  font: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}

.nh-gallery-filters button:hover,
.nh-gallery-filters button.is-active {
  background: var(--nh-ink);
  color: var(--nh-paper);
}

.nh-gallery {
  display: grid;
  width: min(100%, 1320px);
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 2.5rem;
  gap: clamp(.8rem, 1.8vw, 1.7rem);
}

.nh-gallery-item {
  grid-column: span 4;
  grid-row: span 10;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8d5ce;
  transition: opacity .45s ease, transform .6s var(--nh-ease);
}

.nh-gallery-item.is-landscape {
  grid-column: span 6;
  grid-row: span 9;
}

.nh-gallery-item.is-portrait {
  grid-row: span 14;
}

.nh-gallery-item.is-square {
  grid-row: span 11;
}

.nh-gallery-item.is-featured {
  grid-column: span 7;
  grid-row: span 15;
}

.nh-gallery-item:nth-child(6n + 4):not(.is-featured) {
  grid-column: span 5;
}

.nh-gallery-item:nth-child(8n + 6):not(.is-featured) {
  grid-column: 2 / span 4;
}

.nh-gallery-item[hidden] {
  display: none;
}

.nh-artwork-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.nh-artwork-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .9s var(--nh-ease), filter .5s ease;
}

.nh-gallery-item:hover img {
  transform: scale(1.035);
}

.nh-home-gallery {
  max-width: 1320px;
}

.nh-home-gallery .nh-gallery-item:nth-child(n + 7) {
  display: none;
}

/* Selected work marquee */
.nh-marquee.nh-gallery {
  display: block;
  width: 100%;
  max-width: none;
}

.nh-marquee-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.nh-marquee.is-dragging .nh-marquee-viewport { cursor: grabbing; }

.nh-marquee-track {
  display: flex;
  width: max-content;
  animation: nhArtworkMarquee 52s linear infinite;
  will-change: transform;
}

.nh-marquee-group {
  display: flex;
  flex: none;
  padding-right: clamp(1rem, 2vw, 2rem);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.nh-marquee .nh-gallery-item,
.nh-marquee .nh-gallery-item.is-featured,
.nh-marquee .nh-gallery-item.is-landscape,
.nh-marquee .nh-gallery-item.is-portrait,
.nh-marquee .nh-gallery-item.is-square,
.nh-marquee .nh-gallery-item:nth-child(6n + 4):not(.is-featured),
.nh-marquee .nh-gallery-item:nth-child(8n + 6):not(.is-featured) {
  width: clamp(17rem, 24vw, 24rem);
  height: clamp(18rem, 29vw, 29rem);
  flex: none;
  margin: 0;
}

.nh-marquee .nh-gallery-item.is-landscape {
  width: clamp(27rem, 40vw, 40rem);
  height: clamp(18rem, 29vw, 29rem);
}

.nh-marquee .nh-gallery-item.is-square {
  width: clamp(18rem, 29vw, 29rem);
  height: clamp(18rem, 29vw, 29rem);
}

.nh-marquee .nh-artwork-link img {
  opacity: .64;
  filter: grayscale(.45) saturate(.38) brightness(1.08);
  transition: opacity .55s ease, filter .55s ease, transform .9s var(--nh-ease);
  -webkit-user-drag: none;
}

.nh-marquee .nh-artwork-link:hover img,
.nh-marquee .nh-artwork-link:focus-visible img,
.nh-marquee .nh-artwork-link:active img {
  opacity: 1;
  filter: grayscale(0) saturate(1) brightness(1.04);
}

.nh-marquee-viewport:focus-within .nh-marquee-track,
.nh-marquee.is-dragging .nh-marquee-track {
  animation-play-state: paused;
}

.js .nh-marquee .nh-gallery-item {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.nh-marquee-controls {
  display: flex;
  max-width: 1320px;
  margin: 1.4rem auto 0;
  justify-content: flex-end;
  gap: .6rem;
}

.nh-marquee-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--nh-line);
  border-radius: 50%;
  background: transparent;
  color: var(--nh-ink);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  place-items: center;
  transition: background .25s ease, color .25s ease;
}

.nh-marquee-controls button:hover,
.nh-marquee-controls button:focus-visible {
  background: var(--nh-ink);
  color: var(--nh-paper);
}

@keyframes nhArtworkMarquee {
  to { transform: translateX(-50%); }
}

/* Lightbox */
.nh-lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: rgba(8, 8, 8, .985);
  color: #fff;
}

.nh-lightbox::backdrop {
  background: #080808;
}

.nh-lightbox[open] {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 5rem;
  place-items: center;
}

.nh-lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  box-sizing: border-box;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  place-items: center;
}

.nh-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - clamp(10rem, 15vw, 15rem));
  object-fit: contain;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .3s ease, transform .5s var(--nh-ease);
}

.nh-lightbox figcaption {
  max-width: min(70vw, 56rem);
  min-height: 1.5em;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.72rem, 1vw, .9rem);
  letter-spacing: .08em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

/* Press & Media */
.nh-home-press {
  padding: var(--nh-section) var(--nh-gutter);
  background: #dfdcd4;
}

.nh-press-filters {
  display: flex;
  max-width: 1320px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  gap: .65rem;
  flex-wrap: wrap;
}

.nh-press-filters button {
  padding: .65rem 1rem;
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  background: transparent;
  color: var(--nh-ink);
  font: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nh-press-filters button:hover,
.nh-press-filters button.is-active {
  background: var(--nh-ink);
  color: var(--nh-paper);
}

.nh-press-list {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--nh-line);
}

.nh-press-entry {
  margin: 0;
  border-bottom: 1px solid var(--nh-line);
}

.nh-press-entry[hidden] { display: none; }

.nh-press-entry > a {
  display: grid;
  padding: clamp(1.6rem, 3vw, 2.8rem) 0;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, .35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.nh-press-entry h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.92vw, 2.04rem);
  letter-spacing: -.025em;
  line-height: 1.08;
  text-align: left;
}

.nh-press-source {
  display: flex;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: 1rem;
}

.nh-press-source { justify-content: flex-end; text-align: right; }
.nh-press-entry > a:hover h2 { font-style: italic; }

.nh-empty-state,
.nh-journal-empty {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 9rem) 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(2rem, 5vw, 4.8rem);
}

/* Studio Journal */
.nh-journal-grid {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 2.5vw, 2.5rem);
}

.nh-journal-card { grid-column: span 4; }
.nh-journal-card:first-child { grid-column: span 8; }
.nh-journal-card:nth-child(5n + 3) { grid-column: span 5; }

.nh-journal-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d5ce;
}

.nh-journal-card:first-child .nh-journal-image { aspect-ratio: 16 / 9; }
.nh-journal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--nh-ease), filter .5s ease; }
.nh-journal-image:hover img { transform: scale(1.025); filter: saturate(1.08); }
.nh-journal-card-copy { padding-top: 1.4rem; }

.nh-journal-meta {
  display: flex;
  margin-bottom: 1rem;
  gap: 1rem;
  color: var(--nh-ash);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nh-journal-card h2 { margin: 0 0 1rem; font-size: clamp(2rem, 3.5vw, 3.6rem); letter-spacing: -.03em; }
.nh-journal-card p { max-width: 38rem; }
.nh-pagination ul { display: flex; margin: 5rem 0 0; padding: 0; gap: .7rem; list-style: none; justify-content: center; }
.nh-pagination a, .nh-pagination span { display: grid; width: 2.7rem; height: 2.7rem; border: 1px solid var(--nh-line); border-radius: 50%; place-items: center; }
.nh-pagination .current { background: var(--nh-ink); color: var(--nh-paper); }

.nh-journal-single { padding-top: clamp(9rem, 14vw, 12rem); }
.nh-journal-single-head { max-width: 1080px; margin: 0 auto clamp(4rem, 8vw, 8rem); padding: 0 var(--nh-gutter); text-align: center; }
.nh-journal-single-head .wp-block-post-date { color: var(--nh-ash); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nh-journal-single-title { margin: 1.5rem auto 3rem !important; font-size: clamp(4rem, 9vw, 9rem) !important; letter-spacing: -.045em; line-height: .84 !important; }
.nh-journal-hero { width: min(calc(100% - 2 * var(--nh-gutter)), 1320px); max-height: 82svh; margin: 0 auto clamp(4rem, 8vw, 8rem); overflow: hidden; }
.nh-journal-hero img { width: 100%; max-height: 82svh; object-fit: cover; }
.nh-journal-content { width: min(calc(100% - 2 * var(--nh-gutter)), 760px); margin: 0 auto; font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.nh-journal-content > p:first-child { font-family: var(--wp--preset--font-family--display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.2; }
.nh-journal-navigation { display: grid; width: min(calc(100% - 2 * var(--nh-gutter)), 1080px); margin: var(--nh-section) auto 0; padding-top: 2rem; border-top: 1px solid var(--nh-line); grid-template-columns: 1fr 1fr; gap: 2rem; }
.nh-journal-navigation > :last-child { text-align: right; }
.nh-related { width: min(calc(100% - 2 * var(--nh-gutter)), 1080px); margin: var(--nh-section) auto; }
.nh-related > div { display: grid; border-top: 1px solid var(--nh-line); }
.nh-related a { display: grid; padding: 1.4rem 0; border-bottom: 1px solid var(--nh-line); grid-template-columns: 6rem 1fr; gap: 2rem; }
.nh-related time { color: var(--nh-ash); font-size: .72rem; }
.nh-related span { font-family: var(--wp--preset--font-family--display); font-size: 1.65rem; }

.nh-lightbox.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.nh-lightbox button {
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  place-items: center;
  transition: background .25s ease, color .25s ease;
}

.nh-lightbox button:hover {
  background: #fff;
  color: #000;
}

.nh-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem !important;
}

/* About */
.nh-about-layout {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.nh-about-portrait {
  position: sticky;
  top: 8rem;
  margin: 0;
}

.nh-about-portrait img {
  width: 100%;
  max-height: 72svh;
  object-fit: cover;
}

.nh-about-copy {
  padding-top: clamp(0rem, 5vw, 5rem);
}

.nh-about-copy .nh-lead {
  margin-top: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  letter-spacing: -.025em;
  line-height: 1.05;
}

.nh-about-copy p:not(.nh-lead) {
  max-width: 43rem;
  margin-top: 1.6rem;
}

.nh-documentation {
  margin-top: var(--nh-section);
}

.nh-documentation img {
  width: 100%;
  max-height: 75svh;
  object-fit: cover;
}

/* Exhibitions */
.nh-timeline {
  max-width: 1100px;
  margin: 0 auto;
}

.nh-timeline-year {
  display: grid;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-top: 1px solid var(--nh-line);
  grid-template-columns: minmax(6rem, .28fr) 1fr;
  gap: 2rem;
}

.nh-timeline-year > h2 {
  position: sticky;
  top: 7rem;
  align-self: start;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .8;
}

.nh-timeline-year ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nh-timeline-year li {
  padding: 0 0 1.7rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.nh-timeline-year li strong {
  display: block;
  font-weight: 650;
}

.nh-timeline-image {
  width: min(100%, 1100px);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
}

.nh-timeline-image img {
  width: 100%;
}

/* Contact */
.nh-contact-layout {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: minmax(15rem, .55fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.nh-contact-intro h2 {
  margin-top: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.nh-contact-intro a {
  border-bottom: 1px solid currentColor;
}

.wpcf7 label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wpcf7 input:not([type='submit']),
.wpcf7 textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: .55rem;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid var(--nh-line);
  border-radius: 0;
  background: transparent;
  color: var(--nh-ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-bottom-color: var(--nh-ink);
}

.wpcf7 textarea {
  min-height: 10rem;
  resize: vertical;
}

.wpcf7 input[type='submit'] {
  padding: .9rem 1.5rem;
  border: 1px solid var(--nh-ink);
  border-radius: 999px;
  background: var(--nh-ink);
  color: #fff;
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Footer */
.nh-site-footer {
  padding: clamp(4rem, 8vw, 8rem) var(--nh-gutter) 2rem;
  background: var(--nh-ink);
  color: var(--nh-paper);
}

.nh-site-footer a,
.nh-site-footer .wp-block-site-title a {
  color: inherit !important;
}

.nh-footer-top,
.nh-footer-bottom,
.nh-footer-rule {
  max-width: 1320px !important;
}

.nh-site-footer .wp-block-site-title {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .8;
  text-transform: none;
}

.nh-footer-contact {
  margin: 0;
  border-bottom: 1px solid rgba(242, 239, 232, .6);
  font-size: clamp(.85rem, 1.2vw, 1rem);
}

.nh-footer-rule {
  margin: clamp(3rem, 7vw, 7rem) auto 1.5rem !important;
  border-color: rgba(242, 239, 232, .2) !important;
}

.nh-footer-bottom {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .6;
  text-transform: uppercase;
}

.nh-legal-links {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nh-legal-copy {
  max-width: 50rem;
  font-size: 1rem;
  line-height: 1.7;
}

.nh-legal-copy h2 {
  margin: 3rem 0 1rem;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.nh-legal-copy address { font-style: normal; }

.nh-form-privacy {
  margin-top: 1.25rem;
  color: var(--nh-ash);
  font-size: .78rem;
  line-height: 1.55;
}

.nh-form-privacy a { text-decoration: underline; text-underline-offset: .18em; }

/* Reveal system */
.js .nh-reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity .8s ease, transform 1s var(--nh-ease);
}

.js .nh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .nh-gallery-item:nth-child(3n + 2) { transition-delay: .08s; }
.js .nh-gallery-item:nth-child(3n + 3) { transition-delay: .16s; }

.nh-no-js .nh-marquee-viewport { overflow-x: auto; }
.nh-no-js .nh-marquee-track { animation: none; transform: none; }
.nh-no-js .nh-marquee-controls { display: none; }

@media (min-width: 1001px) {
  .nh-page-title { font-size: clamp(3.8rem, 8vw, 8rem) !important; }
  .nh-hero-title { font-size: clamp(4.8rem, 10.4vw, 10.4rem); }
  .nh-section-head h2,
  .nh-contact-cta h2 { font-size: clamp(3rem, 6.4vw, 6.4rem); }
  .nh-home-work .nh-section-head h2 { font-size: clamp(2.8rem, 5.6vw, 5.6rem); }
  .nh-manifesto blockquote {
    max-width: 17ch;
    font-size: clamp(3.6rem, 5vw, 5.75rem);
    line-height: 1.02;
  }
  .nh-discipline-panel img { object-position: var(--nh-focus, center); }
  .nh-discipline-panel::after { background: linear-gradient(90deg, rgba(0,0,0,.45), transparent 58%), linear-gradient(0deg, rgba(0,0,0,.68), transparent 64%); }
  .nh-discipline-content { padding-top: 5rem; padding-bottom: 5rem; }
  .nh-discipline-content h2 { font-size: clamp(4.8rem, 7.2vw, 7.2rem); }
}

@media (max-width: 1000px) {
  .nh-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 2.1rem;
  }
  .nh-gallery-item,
  .nh-gallery-item.is-portrait,
  .nh-gallery-item:nth-child(6n + 4):not(.is-featured) {
    grid-column: span 4;
  }
  .nh-gallery-item.is-landscape,
  .nh-gallery-item.is-featured {
    grid-column: span 8;
  }
  .nh-gallery-item:nth-child(8n + 6):not(.is-featured) {
    grid-column: 1 / span 4;
  }
}

@media (max-width: 782px) {
  .admin-bar .nh-site-header { top: 46px; }
}

@media (max-width: 700px) {
  :root { --nh-section: 5.5rem; }
  .nh-site-header { padding: 1.25rem; }
  .home:not(.nh-header-scrolled) .nh-site-header { padding: 1.25rem; }
  .nh-header-actions { gap: .75rem !important; }
  .nh-language-switcher { display: none; }
  .nh-site-header .wp-block-navigation__responsive-container-open {
    display: flex !important;
    color: inherit !important;
  }
  .nh-site-header .wp-block-navigation__responsive-container-open svg,
  .nh-site-header .wp-block-navigation__responsive-container-open path {
    fill: currentColor !important;
  }
  .nh-site-header .wp-block-navigation__responsive-container.is-menu-open {
    padding: 6rem 1.5rem 2rem;
    background: var(--nh-ink) !important;
    color: var(--nh-paper) !important;
  }
  .nh-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    gap: 1.2rem;
    align-items: flex-start;
  }
  .nh-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__label {
    font-family: var(--wp--preset--font-family--display);
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -.03em;
    text-transform: none;
  }
  .nh-page-main { padding: 8rem 1.25rem 5rem; }
  .nh-page-title { margin-bottom: 3.5rem !important; font-size: clamp(3.7rem, 19vw, 6rem) !important; }
  .nh-hero { min-height: 100svh; }
  .nh-hero-media::after { background: linear-gradient(0deg, rgba(0,0,0,.77), rgba(0,0,0,.08) 75%); }
  .nh-hero-media img { height: 105%; object-position: 61% center; }
  .nh-hero-content { padding: 8rem 1.25rem 5.3rem; }
  .nh-hero-title { font-size: clamp(4.8rem, 25vw, 7.2rem); line-height: .76; }
  .nh-hero-title span { margin-left: 0; }
  .nh-hero-lede { max-width: 23rem; margin-left: 0; }
  .nh-scroll-cue { display: none; }
  .nh-manifesto { min-height: 76svh; padding-right: 1.25rem; padding-left: 1.25rem; }
  .nh-manifesto blockquote { margin-left: 0; font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .nh-home-work { padding-right: 1.25rem; padding-left: 1.25rem; }
  .nh-section-head { display: grid; margin-bottom: 3rem; }
  .nh-section-head h2 { font-size: clamp(3.2rem, 17vw, 5.5rem); }
  .nh-marquee .nh-gallery-item,
  .nh-marquee .nh-gallery-item.is-featured,
  .nh-marquee .nh-gallery-item.is-landscape,
  .nh-marquee .nh-gallery-item.is-portrait,
  .nh-marquee .nh-gallery-item.is-square,
  .nh-marquee .nh-gallery-item:nth-child(6n + 4):not(.is-featured),
  .nh-marquee .nh-gallery-item:nth-child(8n + 6):not(.is-featured) {
    width: auto;
    min-width: 15rem;
    height: 20rem;
    aspect-ratio: 4 / 5;
  }
  .nh-marquee .nh-gallery-item.is-landscape { width: 30rem; aspect-ratio: 3 / 2; }
  .nh-marquee .nh-gallery-item.is-square { width: 20rem; aspect-ratio: 1; }
  .nh-marquee-controls { margin-top: 1rem; }
  .nh-discipline-panel { min-height: 72svh; }
  .nh-discipline-content { display: grid; padding: 2rem 1.25rem 2.8rem; gap: 1.5rem; }
  .nh-discipline-content h2 { font-size: clamp(4rem, 21vw, 6.6rem); }
  .nh-contact-cta { min-height: 62svh; padding-right: 1.25rem; padding-left: 1.25rem; }
  .nh-contact-cta h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .nh-works-intro { display: block; margin-top: 0; }
  .nh-works-intro p { margin: 0; }
  .nh-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 2rem;
    gap: .75rem;
  }
  .nh-gallery-item,
  .nh-gallery-item.is-landscape,
  .nh-gallery-item.is-portrait,
  .nh-gallery-item.is-square,
  .nh-gallery-item.is-featured,
  .nh-gallery-item:nth-child(6n + 4):not(.is-featured),
  .nh-gallery-item:nth-child(8n + 6):not(.is-featured) {
    grid-column: span 1;
    grid-row: span 8;
  }
  .nh-gallery-item.is-portrait { grid-row: span 11; }
  .nh-gallery-item.is-landscape,
  .nh-gallery-item.is-featured { grid-column: span 2; grid-row: span 10; }
  .nh-lightbox[open] { grid-template-columns: 3.5rem minmax(0, 1fr) 3.5rem; }
  .nh-lightbox figure { padding: 4.5rem 0; }
  .nh-lightbox button { width: 2.6rem; height: 2.6rem; }
  .nh-lightbox figure { gap: .5rem; }
  .nh-lightbox figcaption { max-width: 64vw; font-size: .62rem; }
  .nh-home-press { padding-right: 1.25rem; padding-left: 1.25rem; }
  .nh-press-entry > a { grid-template-columns: minmax(0, 1fr) minmax(6rem, .45fr); gap: 1rem; }
  .nh-press-entry h2 { font-size: clamp(1.25rem, 5.4vw, 1.8rem); }
  .nh-press-source { justify-content: flex-end; }
  .nh-journal-grid { display: grid; grid-template-columns: 1fr; }
  .nh-journal-card,
  .nh-journal-card:first-child,
  .nh-journal-card:nth-child(5n + 3) { grid-column: auto; }
  .nh-journal-single-head { padding-right: 1.25rem; padding-left: 1.25rem; }
  .nh-journal-single-title { font-size: clamp(3.5rem, 18vw, 6rem) !important; }
  .nh-journal-content { width: calc(100% - 2.5rem); }
  .nh-journal-navigation { width: calc(100% - 2.5rem); grid-template-columns: 1fr; }
  .nh-journal-navigation > :last-child { text-align: left; }
  .nh-about-layout,
  .nh-contact-layout { grid-template-columns: 1fr; }
  .nh-about-portrait { position: relative; top: 0; }
  .nh-about-copy { padding-top: 0; }
  .nh-timeline-year { grid-template-columns: 1fr; gap: 1.5rem; }
  .nh-timeline-year > h2 { position: relative; top: 0; }
  .nh-footer-top { display: grid !important; gap: 3rem; }
  .nh-footer-bottom { align-items: flex-start !important; }
  .nh-legal-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .nh-reveal { opacity: 1; transform: none; }
  .nh-hero-media img { animation: none !important; transform: none; }
  .nh-year-track { animation: none !important; }
  .nh-marquee-viewport { overflow-x: auto !important; }
  .nh-marquee-track { animation: none !important; transform: none !important; }
}
