:root {
  --ink: #f7f3eb;
  --muted: #bfb7aa;
  --quiet: #8f867a;
  --black: #070707;
  --charcoal: #111111;
  --panel: #171717;
  --paper: #f5f0e8;
  --paper-ink: #201b16;
  --paper-muted: #5b5146;
  --line: rgba(247, 243, 235, .16);
  --paper-line: rgba(32, 27, 22, .16);
  --gold: #e9bd65;
  --ember: #e75d36;
  --cyan: #4ed5de;
  --green: #b8d95a;
  --shadow: 0 22px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.wrap {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 12px;
  z-index: 50;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--black);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, .58) 70%, transparent);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 178px;
  color: #fff;
  font-weight: 780;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
  color: rgba(247, 243, 235, .84);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(247, 243, 235, .1);
  text-decoration: none;
}

.hero {
  min-height: 94svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .36) 52%, rgba(0, 0, 0, .08)),
    linear-gradient(0deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, 0) 42%),
    var(--hero-image, url("/assets/optimized-v2/art/light-encroached-homes-1280.webp")) center / cover no-repeat;
}

.page-hero {
  min-height: 56svh;
}

.hero-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 54px;
}

.eyebrow,
.section-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-warm .section-label {
  color: #9a4a20;
}

h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(46px, 7.5vw, 102px);
  line-height: .95;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.36;
}

.credential {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid rgba(247, 243, 235, .36);
  border-radius: 8px;
  background: rgba(247, 243, 235, .09);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.button:hover {
  background: var(--ink);
  color: var(--black);
  text-decoration: none;
}

.button.dark {
  border-color: rgba(32, 27, 22, .2);
  background: #201b16;
  color: #fff;
}

.button.dark:hover {
  background: #9a4a20;
  color: #fff;
}

.button.ghost-dark {
  border-color: rgba(32, 27, 22, .22);
  background: transparent;
  color: #201b16;
}

.button.ghost-dark:hover {
  background: #201b16;
  color: #fff;
}

.hero-stat {
  color: rgba(247, 243, 235, .74);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.series-jump {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
  max-width: 900px;
}

.series-jump a {
  min-height: 116px;
  display: grid;
  align-content: end;
  padding: 16px;
  border: 1px solid rgba(247, 243, 235, .18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2)),
    var(--thumb) center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.series-jump a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.series-jump strong {
  font-size: 15px;
}

.series-jump span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 86px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-warm {
  color: var(--paper-ink);
  background: var(--paper);
}

.section-blue {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .94), rgba(7, 7, 7, .78)),
    url("/assets/optimized-v2/art/li-river-mist-1280.webp") center / cover no-repeat;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(300px, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-warm .lead,
.section-warm .prose {
  color: var(--paper-muted);
}

.prose {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.prose + .prose {
  margin-top: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.work-card {
  position: relative;
  min-height: 320px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, .12);
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.work-card.wide {
  grid-column: span 8;
  min-height: 390px;
}

.work-card.tall {
  grid-row: span 2;
  min-height: 640px;
}

.work-card.square {
  min-height: 390px;
}

.work-card img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1);
  transition: transform .7s ease, filter .7s ease;
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.035);
}

.work-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 5px;
  padding: 64px 18px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0));
  color: #fff;
}

.work-caption strong {
  font-size: 15px;
  line-height: 1.16;
}

.work-caption small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.series-grid,
.print-grid,
.proof-grid,
.notes-grid,
.source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.series,
.print-card,
.proof-card,
.note,
.source-card,
.bio-card {
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, .14);
  border-radius: 8px;
  background: var(--panel);
}

.section-warm .print-card,
.section-warm .proof-card,
.section-warm .note,
.section-warm .source-card,
.section-warm .bio-card {
  border-color: var(--paper-line);
  background: #fffaf1;
}

.series {
  display: grid;
  grid-template-rows: 270px 1fr;
}

.print-card,
.proof-card,
.source-card {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.split .notes-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.series img,
.proof-card img,
.print-card img,
.source-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-body,
.print-body,
.proof-body,
.source-body,
.bio-card {
  padding: 20px;
}

.series-body h3,
.print-body h3,
.proof-body h3,
.source-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.series-body p,
.print-body p,
.proof-body p,
.source-body p,
.note p,
.bio-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-warm .series-body p,
.section-warm .print-body p,
.section-warm .proof-body p,
.section-warm .source-body p,
.section-warm .note p,
.section-warm .bio-card p {
  color: var(--paper-muted);
}

.meta-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.section-warm .meta-list {
  color: var(--paper-muted);
}

.meta-list strong {
  color: inherit;
}

.artwork-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(233, 189, 101, .55);
  text-underline-offset: 3px;
}

.artwork-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--paper-line);
}

.artwork-index-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--paper-line);
}

.artwork-index-list a {
  color: var(--paper-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.artwork-index-list span {
  color: #9a4a20;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.recognition-list,
.award-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--paper-line);
}

.recognition-list li,
.award-list li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--paper-line);
  color: #2a241e;
}

.recognition-list time,
.award-list time {
  color: #9a4a20;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.recognition-list span,
.award-list span {
  font-weight: 680;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.split.start {
  align-items: start;
}

.feature-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.statement {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 32px;
}

.filter-button {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(247, 243, 235, .22);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--ink);
  color: var(--black);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid rgba(247, 243, 235, .18);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.section-warm .link-list a {
  border-color: rgba(32, 27, 22, .2);
  color: var(--paper-ink);
}

.link-list a:hover {
  background: var(--ink);
  color: var(--black);
  text-decoration: none;
}

.section-warm .link-list a:hover {
  background: var(--paper-ink);
  color: #fff;
}

.inquiry-panel {
  padding: 30px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 54px rgba(39, 27, 14, .08);
}

.inquiry-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.inquiry-panel p {
  color: var(--paper-muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--paper-ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(32, 27, 22, .22);
  border-radius: 8px;
  background: #fff;
  color: var(--paper-ink);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.redirect-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--ink);
  background: var(--black);
}

.redirect-card {
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.redirect-card h1 {
  font-size: clamp(38px, 7vw, 70px);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 13px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .92);
}

.modal.is-open {
  display: grid;
}

.modal-inner {
  width: min(1180px, 100%);
  max-height: calc(100svh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: end;
}

.modal img {
  width: 100%;
  max-height: calc(100svh - 80px);
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.modal-copy {
  padding: 20px;
  border: 1px solid rgba(247, 243, 235, .16);
  border-radius: 8px;
  background: rgba(17, 17, 17, .94);
}

.modal-copy h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.modal-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.modal-copy p + p {
  margin-top: 10px;
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 243, 235, .32);
  border-radius: 50%;
  background: rgba(7, 7, 7, .76);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--black);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-inner {
    padding-top: 164px;
  }

  .section-head,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .feature-image img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .work-card,
  .work-card.wide {
    grid-column: span 3;
  }

  .series-grid,
  .print-grid,
  .proof-grid,
  .notes-grid,
  .source-grid,
  .artwork-index-list,
  .series-jump {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1220px);
  }

  .hero {
    min-height: 90svh;
  }

  .hero-inner {
    padding-top: 238px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 12px 24px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 12px;
  }

  .page-hero {
    min-height: 62svh;
  }

  .hero-copy {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .gallery-grid,
  .series-grid,
  .print-grid,
  .proof-grid,
  .notes-grid,
  .source-grid,
  .artwork-index-list,
  .series-jump {
    grid-template-columns: 1fr;
  }

  .artwork-index-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .split .notes-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.wide,
  .work-card.tall,
  .work-card.square {
    grid-column: span 1;
    min-height: 340px;
  }

  .work-card.tall {
    min-height: 560px;
  }

  .recognition-list li,
  .award-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .inquiry-panel {
    padding: 22px;
  }
}
