/* Homepage-only editorial system. Other routes keep their existing theme. */
.nh-home {
  overflow-x: clip;
  --nh-bg: #101112;
  --nh-fg: #f5f5f2;
  --nh-muted: #a5a5a5;
  --nh-red: #ff4655;
  --nh-line: #343536;
  background: var(--nh-bg);
  color: var(--nh-fg);
  font-family: "Inter", system-ui, sans-serif;
}
.nh-home * {
  box-sizing: border-box;
}
.nh-home h1,
.nh-home h2,
.nh-home h3,
.nh-home p {
  margin: 0;
}
.nh-home h1,
.nh-home h2,
.nh-home h3 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
}
.nh-home a {
  color: inherit;
  text-decoration: none;
}
.nh-home button {
  font: inherit;
  cursor: pointer;
}
.nh-home button:disabled {
  opacity: 0.35;
  cursor: default;
}
.nh-home :is(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--nh-red);
  outline-offset: 6px;
}
.nh-home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nh-home .nh-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(22px, 5vw, 80px);
  padding-right: clamp(22px, 5vw, 80px);
}
.nh-home .nh-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}
.nh-eyebrow > span:first-child {
  color: var(--nh-red);
}
.nh-home .nh-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nh-red);
}
.nh-home .nh-action {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 48px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1px solid currentColor;
  transition:
    gap 0.2s,
    color 0.2s;
}
.nh-home .nh-action:hover {
  color: var(--nh-red);
  gap: 34px;
}
.nh-home .nh-action-primary {
  border: 1px solid var(--nh-red);
  border-radius: 5px;
  background: var(--nh-red);
  color: #101112;
  padding: 17px 24px;
}
.nh-home .nh-action-primary:hover {
  color: #101112;
  background: #ff6874;
}
.nh-hero {
  padding-top: 35px;
}
.nh-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #c4c4c3;
}
.nh-hero-top > span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
.nh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 70px 0 66px;
}
.nh-home .nh-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(3.9rem, 7.5vw, 7.15rem);
  letter-spacing: -0.065em;
  line-height: 0.99;
  font-weight: 500;
}
.nh-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.07em;
  color: var(--nh-red);
}
.nh-home .nh-hero-description {
  color: #d2d2d0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 390px;
  margin: 27px 0 25px;
}
.nh-hero-description span {
  color: var(--nh-muted);
  display: block;
}
.nh-hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.nh-creator-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}
.nh-creator-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid #606060;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
}
.nh-creator-note strong,
.nh-creator-note div span {
  display: block;
}
.nh-creator-note strong {
  font-size: 0.875rem;
  font-weight: 500;
}
.nh-creator-note div span {
  color: var(--nh-muted);
  font-size: 0.75rem;
  margin-top: 3px;
}
.nh-hero-art {
  position: relative;
  padding: 0 0 0 15px;
  min-width: 0;
}
.nh-art-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  color: #bcbcbc;
  padding-bottom: 13px;
}
.nh-hero-main-image {
  position: relative;
  display: block;
  aspect-ratio: 1.04;
  border-radius: 6px;
  overflow: hidden;
  background: #252526;
}
.nh-hero-main-image > img {
  transition: transform 0.7s;
  object-position: 60% center;
}
.nh-hero-main-image:hover > img {
  transform: scale(1.035);
}
.nh-art-caption {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, #000b);
  padding: 70px 22px 20px;
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}
.nh-art-caption span:not(.nh-image-arrow) {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #dededd;
  display: block;
  margin-bottom: 8px;
}
.nh-art-caption strong {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-image-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #ffffff70;
  background: #17171780;
  color: white;
}
.nh-floating-image {
  position: absolute;
  width: 37%;
  aspect-ratio: 0.83;
  left: -44px;
  top: -20px;
  transform: rotate(-9deg);
  z-index: 2;
  border: 6px solid #efefea;
  box-shadow: 0 10px 40px #0005;
  border-radius: 3px;
  transition: transform 0.3s;
}
.nh-floating-image:hover {
  transform: rotate(-3deg) translateY(-5px);
}
.nh-floating-image > img {
  height: calc(100% - 25px);
}
.nh-floating-image > span {
  height: 25px;
  background: #efefea;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nh-floating-image svg {
  width: 13px;
}
.nh-art-bottom {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  color: var(--nh-muted);
  font-size: 0.75rem;
}
.nh-banner-controls {
  display: flex;
  gap: 1px;
}
.nh-banner-controls button {
  color: #9b9b9b;
  width: 32px;
  min-height: 36px;
  font-size: 0.75rem;
  border-bottom: 1px solid transparent;
}
.nh-banner-controls button[aria-pressed="true"] {
  color: var(--nh-red);
  border-color: var(--nh-red);
}
.nh-hero-bottom {
  border-top: 1px solid var(--nh-line);
  padding: 25px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nh-hero-bottom > a {
  display: flex;
  gap: 22px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  min-height: 44px;
  align-items: center;
  color: #b9b9b8;
}
.nh-hero-bottom > a span {
  font-size: 1.5rem;
  color: var(--nh-fg);
}
.nh-stats {
  display: flex;
  gap: clamp(20px, 4vw, 62px);
}
.nh-stats a {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nh-stats strong {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.nh-stats span {
  font-size: 0.75rem;
  color: var(--nh-muted);
}
.nh-home .nh-light {
  --nh-fg: #171819;
  --nh-muted: #5f6162;
  --nh-line: #d0d1cf;
  --nh-red: #ba2739;
  background: #f1f2ee;
  color: var(--nh-fg);
}
.nh-section-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.nh-home .nh-section-heading h2 {
  font-size: clamp(2rem, 3.45vw, 3.125rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-top: 17px;
}
.nh-section-intro {
  max-width: 310px;
}
.nh-home .nh-section-intro p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--nh-muted);
  margin-bottom: 10px;
}
.nh-section-intro .nh-action {
  padding: 6px 0;
  min-height: 40px;
}
.nh-work,
.nh-reviews {
  scroll-margin-top: 90px;
  padding: 76px 0;
}
.nh-work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: start;
}
.nh-work-card {
  min-width: 0;
}
.nh-work-card:first-child {
  grid-row: span 2;
}
.nh-work-image {
  position: relative;
  aspect-ratio: 1.85;
  overflow: hidden;
  border-radius: 6px;
  background: #dedfdc;
}
.nh-work-card:first-child .nh-work-image {
  aspect-ratio: 0.98;
}
.nh-work-image > img {
  transition: transform 0.5s;
}
.nh-work-card:hover img {
  transform: scale(1.035);
}
.nh-work-image .nh-image-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.nh-home .nh-work-meta {
  padding-top: 17px;
}
.nh-work-meta > span {
  font-size: 0.75rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--nh-muted);
}
.nh-home .nh-work-meta h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.nh-home .nh-work-meta p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 11px;
  max-width: 480px;
  color: var(--nh-muted);
}
.nh-work-card:not(:first-child) .nh-work-meta p {
  display: none;
}
.nh-prompts {
  padding-top: 80px;
  padding-bottom: 42px;
}
.nh-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: #666 #222;
}
.nh-rail > * {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 230px;
  scroll-snap-align: start;
}
.nh-prompt-image,
.nh-collection-image {
  display: block;
  position: relative;
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 6px;
  background: #242527;
}
.nh-prompt-image > img,
.nh-collection-image > img {
  transition: transform 0.5s;
}
.nh-prompt-image:hover > img,
.nh-collection-card:hover img {
  transform: scale(1.05);
}
.nh-prompt-image .nh-image-arrow,
.nh-collection-image .nh-image-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
}
.nh-image-number,
.nh-collection-count {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #111b;
  color: white;
  padding: 5px 9px;
  border: 1px solid #ffffff40;
  border-radius: 3px;
  font-size: 0.75rem;
}
.nh-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  margin: 16px 0 10px;
  color: var(--nh-muted);
  font-size: 0.75rem;
}
.nh-card-meta > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nh-card-meta > button {
  color: var(--nh-fg);
  white-space: nowrap;
  min-height: 36px;
  margin-top: -10px;
  flex-shrink: 0;
}
.nh-card-meta > button:hover {
  color: var(--nh-red);
}
.nh-home .nh-prompt-card h3,
.nh-home .nh-collection-card h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-home .nh-model {
  font-size: 0.75rem;
  color: var(--nh-muted);
  margin-top: 12px;
  margin-bottom: 9px;
  line-height: 1.5;
}
.nh-rail-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.nh-rail-bottom > span {
  font-size: 0.75rem;
  color: var(--nh-muted);
}
.nh-controls {
  display: flex;
  gap: 10px;
}
.nh-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #5c5d5e;
  font-size: 1.25rem;
  color: var(--nh-fg);
}
.nh-controls button:hover:not(:disabled) {
  border-color: var(--nh-red);
  color: var(--nh-red);
}
.nh-collections {
  padding-top: 40px;
  padding-bottom: 80px;
}
.nh-collection-card {
  text-align: left;
  color: var(--nh-fg);
}
.nh-collection-image {
  aspect-ratio: 0.88;
}
.nh-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.nh-review-image {
  position: relative;
  aspect-ratio: 0.82;
  border-radius: 6px;
  overflow: hidden;
  background: #d9dad8;
}
.nh-play {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  width: 40px;
  height: 40px;
  border: 1px solid #fff9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  background: #1118;
  transition: transform 0.2s;
}
.nh-review-card:hover .nh-play {
  transform: scale(1.12);
}
.nh-home .nh-review-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.015em;
}
.nh-journal {
  padding-top: 80px;
  padding-bottom: 70px;
}
.nh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.nh-blog-image {
  aspect-ratio: 1.6;
  border-radius: 6px;
  background: #242527;
  overflow: hidden;
}
.nh-home .nh-blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.nh-read {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.875rem;
}
.nh-blog-card:hover .nh-read {
  color: var(--nh-red);
}
.nh-home .nh-about {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 36px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.nh-about-portrait {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.nh-home .nh-about h2 {
  font-size: 2.4rem;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-top: 12px;
}
.nh-home .nh-about-copy > p:not(.nh-eyebrow) {
  color: var(--nh-muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-top: 15px;
  max-width: 590px;
}
.nh-about .nh-action {
  margin-top: 12px;
}
.nh-experience {
  padding-left: 30px;
  border-left: 1px solid var(--nh-line);
}
.nh-experience strong {
  display: block;
  font-size: 3rem;
  letter-spacing: -0.06em;
  font-weight: 400;
}
.nh-experience span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--nh-muted);
  margin-top: 6px;
}
.nh-contact {
  background: #ff4655;
  color: #141414;
  padding: 60px 0 42px;
}
.nh-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0 40px;
}
.nh-home .nh-contact h2 {
  font-size: clamp(3.8rem, 8.8vw, 8rem);
  letter-spacing: -0.065em;
  line-height: 0.97;
  font-weight: 500;
}
.nh-contact h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.nh-contact-arrow {
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  border: 1px solid #19191980;
  border-radius: 50%;
  transition: transform 0.25s;
}
.nh-contact-link:hover .nh-contact-arrow {
  transform: rotate(10deg);
}
.nh-contact-bottom {
  border-top: 1px solid #14141460;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 23px;
}
.nh-home .nh-contact-bottom p {
  font-size: 1rem;
}
.nh-home .nh-contact .nh-action:hover {
  color: #141414;
}
.nh-content-state {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: var(--nh-muted);
  border: 1px dashed var(--nh-line);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}
.nh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.nh-skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 16px;
  background: white;
  color: black !important;
}
.nh-skip:focus {
  top: 12px;
}
.nh-home .nh-dialog {
  position: fixed;
  inset: 0;
  width: min(1120px, 94vw);
  max-height: 90dvh;
  margin: auto;
  padding: 0;
  border: 1px solid #555;
  border-radius: 10px;
  background: #171819;
  color: #f5f5f2;
}
.nh-dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(6px);
}
.nh-dialog-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  position: relative;
}
.nh-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #666;
  background: #111 !important;
  color: white;
  font-size: 1.7rem !important;
}
.nh-dialog-image {
  background: #090909;
  padding: 24px;
  min-width: 0;
}
.nh-dialog-image img {
  object-fit: contain;
  max-height: 80dvh;
}
.nh-dialog-info {
  padding: 70px 30px 32px;
  min-width: 0;
}
.nh-dialog-info h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: 15px;
}
.nh-dialog-info > p:not(.nh-eyebrow) {
  font-size: 0.875rem;
  color: #aaa;
  line-height: 1.7;
  margin: 20px 0;
}
.nh-dialog-info > .nh-action {
  margin-right: 15px;
}
.nh-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.nh-thumbnails button {
  width: 56px;
  height: 65px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
}
.nh-thumbnails button[aria-pressed="true"] {
  border-color: var(--nh-red);
}
nav.fixed {
  background: #101112f2 !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: #343536 !important;
  border-bottom: 1px solid #343536 !important;
}
nav.fixed > div:first-child {
  max-width: 1440px !important;
  padding-left: clamp(22px, 5vw, 80px) !important;
  padding-right: clamp(22px, 5vw, 80px) !important;
}
nav.fixed a[href="/contact"] {
  padding: 9px 15px !important;
  border: 1px solid #666 !important;
  border-radius: 4px !important;
  color: #eee !important;
  transition: all 0.2s ease !important;
}
nav.fixed a[href="/contact"]:hover {
  border-color: #ff4655 !important;
  color: #ff4655 !important;
}
footer {
  background: #101112 !important;
  border-top: 1px solid #343536 !important;
}
footer > div:first-child {
  max-width: 1440px !important;
  padding-left: clamp(22px, 5vw, 80px) !important;
  padding-right: clamp(22px, 5vw, 80px) !important;
}
footer .flex {
  flex-wrap: wrap;
}
footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #ff4655 !important;
}
@media (min-width: 768px) and (max-width: 1080px) {
  nav.fixed .md\:flex {
    gap: 16px;
  }
  nav.fixed img {
    max-width: 120px;
  }
}
@media (max-width: 1080px) {
  .nh-hero-grid {
    gap: 30px;
    padding-top: 65px;
  }
  .nh-home .nh-hero h1 {
    font-size: clamp(3.5rem, 7.7vw, 5.6rem);
  }
  .nh-floating-image {
    left: -16px;
    top: -30px;
    width: 34%;
  }
  .nh-hero-main-image {
    aspect-ratio: 0.83;
  }
  .nh-hero-actions {
    gap: 14px;
  }
  .nh-hero-art {
    padding-left: 0;
  }
  .nh-stats {
    gap: 22px;
  }
  .nh-stats a {
    gap: 8px;
  }
  .nh-art-bottom > span {
    display: none;
  }
  .nh-art-bottom {
    justify-content: flex-end;
  }
  .nh-rail > * {
    flex-basis: calc((100% - 44px) / 3);
  }
  .nh-home .nh-about {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }
  .nh-experience {
    display: none;
  }
}
@media (max-width: 760px) {
  .nh-hero {
    padding-top: 24px;
  }
  .nh-hero-top > span:last-child {
    display: none;
  }
  .nh-hero-grid {
    grid-template-columns: 1fr;
    padding: 38px 0 28px;
    gap: 58px;
  }
  .nh-home .nh-hero h1 {
    font-size: clamp(2.85rem, 13vw, 5.8rem) !important;
    line-height: 1.02 !important;
  }
  .nh-home .nh-hero-description {
    max-width: 460px;
    margin-top: 24px;
  }
  .nh-creator-note {
    margin-top: 26px;
  }
  .nh-hero-art {
    margin-left: 30px;
  }
  .nh-hero-main-image {
    aspect-ratio: 1.2;
  }
  .nh-floating-image {
    left: -30px;
    width: 28%;
    top: -18px;
  }
  .nh-art-label {
    justify-content: flex-end;
  }
  .nh-art-label > span:first-child {
    display: none;
  }
  .nh-art-bottom > span {
    display: block;
  }
  .nh-art-bottom {
    justify-content: space-between;
  }
  .nh-hero-bottom {
    align-items: start;
  }
  .nh-hero-bottom > a {
    display: none;
  }
  .nh-stats {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .nh-stats a {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .nh-section-heading {
    align-items: start;
    gap: 18px;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .nh-home .nh-section-heading h2 {
    font-size: 2.15rem !important;
  }
  .nh-section-intro {
    max-width: 100%;
  }
  .nh-work,
  .nh-reviews {
    padding: 50px 0;
  }
  .nh-work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
  }
  .nh-work-card:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
  .nh-work-card:first-child .nh-work-image {
    aspect-ratio: 1.3;
  }
  .nh-work-card:not(:first-child) .nh-work-image {
    aspect-ratio: 1;
  }
  .nh-home .nh-work-meta h3 {
    font-size: 1rem;
  }
  .nh-work-meta > span {
    font-size: 0.75rem;
  }
  .nh-prompts,
  .nh-journal {
    padding-top: 50px;
  }
  .nh-collections {
    padding-top: 16px;
    padding-bottom: 50px;
  }
  .nh-rail > * {
    flex-basis: 70%;
    min-width: 230px;
  }
  .nh-review-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
  .nh-home .nh-review-card h3 {
    font-size: 0.9375rem;
  }
  .nh-blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nh-blog-image {
    aspect-ratio: 1.8;
  }
  .nh-home .nh-blog-card h3 {
    font-size: 1.2rem;
  }
  .nh-home .nh-about {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 50px;
  }
  .nh-about-portrait {
    width: 90px;
  }
  .nh-contact {
    padding: 40px 0 30px;
  }
  .nh-contact-link {
    gap: 14px;
  }
  .nh-home .nh-contact h2 {
    font-size: clamp(3.2rem, 12vw, 5.5rem) !important;
    line-height: .97 !important;
  }
  .nh-contact-arrow {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
  }
  .nh-contact-arrow svg {
    width: 45px;
    height: 45px;
  }
  .nh-contact-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nh-dialog-inner {
    grid-template-columns: 1fr;
  }
  .nh-dialog-image {
    padding: 14px;
  }
  .nh-dialog-image img {
    height: 45dvh;
  }
  .nh-dialog-info {
    padding: 25px;
  }
  .nh-home .nh-dialog {
    max-height: 90dvh;
    overflow-y: auto;
  }
  nav.fixed button {
    min-width: 44px;
    min-height: 44px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .nh-hero-copy {
    animation: nh-enter 0.7s ease both;
  }
  .nh-hero-art {
    animation: nh-enter 0.9s ease both;
  }
  @keyframes nh-enter {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html:has(.nh-home) {
    scroll-behavior: auto;
  }
  .nh-home *,
  .nh-home *::before,
  .nh-home *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
