:root {
  --ink: #080808;
  --ink-soft: #151515;
  --paper: #f2efe8;
  --paper-bright: #fbfaf7;
  --muted: #aaa59c;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(8, 8, 8, 0.18);
  --accent: #d63b2f;
  --header-height: 5.5rem;
  --shell: min(100% - 3rem, 92rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 0.125rem solid var(--accent);
  outline-offset: 0.25rem;
}

.screen-reader-text {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--paper-bright);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 0.0625rem solid var(--line-dark);
  background: rgba(8, 8, 8, 0.96);
  transition: background 240ms ease, transform 240ms ease;
}

.site-header.is-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  border-bottom-color: transparent;
}

.site-header.is-scrolled,
.site-header.is-overlay.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(1rem);
}

.header-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-description {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.header-contact {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact a {
  transition: color 160ms ease;
}

.header-contact a:hover {
  color: var(--paper-bright);
}

.site-navigation {
  justify-self: end;
}

.site-navigation > ul,
.nav-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-navigation > ul > li > a,
.nav-group-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-navigation > ul > li > a::after,
.nav-group-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 0.0625rem;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-navigation a[aria-current="page"],
.nav-group.is-current > .nav-group-toggle,
.site-navigation > ul > li > a:hover,
.nav-group-toggle:hover {
  color: var(--paper-bright);
}

.site-navigation a[aria-current="page"]::after,
.nav-group.is-current > .nav-group-toggle::after,
.site-navigation > ul > li > a:hover::after,
.nav-group-toggle:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
}

.nav-group-toggle {
  gap: 0.4rem;
}

.nav-group-toggle svg {
  width: 0.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.nav-group-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 0.25rem);
  left: -1.25rem;
  min-width: 11rem;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 0.125rem solid var(--accent);
  background: rgba(8, 8, 8, 0.96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group-toggle[aria-expanded="true"] + .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  color: var(--paper-bright);
  transform: translateX(0.25rem);
}

.menu-toggle,
.mobile-contact {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero-slides,
.hero-slide,
.hero-slide > a,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 7s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 900ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0, rgba(0, 0, 0, 0.12) 56%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0, transparent 45%);
}

.hero-identity {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: max(1.5rem, calc((100% - 92rem) / 2));
  transform: translateY(-45%);
  pointer-events: none;
}

.hero-identity p {
  margin: 0 0 1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero-identity h1 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 11.25rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.75;
  text-shadow: 0 0.2rem 2.25rem rgba(0, 0, 0, 0.3);
}

.hero-identity h1 span {
  display: block;
}

.hero-identity h1 span:last-child {
  margin-left: 0.7em;
}

.slide-caption {
  position: absolute;
  z-index: 3;
  right: max(1.5rem, calc((100% - 92rem) / 2));
  bottom: 8rem;
  display: grid;
  justify-items: end;
  max-width: 24rem;
  text-align: right;
}

.slide-number {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
}

.slide-caption strong {
  font-size: clamp(1.75rem, 3.4vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.slide-caption small {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.hero-controls {
  position: absolute;
  z-index: 6;
  right: max(1.5rem, calc((100% - 92rem) / 2));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-controls > button,
.hero-dots button {
  display: grid;
  place-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
}

.hero-controls > button {
  border: 0.0625rem solid rgba(255, 255, 255, 0.42);
  transition: border-color 160ms ease, background 160ms ease;
}

.hero-controls > button:hover {
  border-color: var(--paper-bright);
  background: rgba(0, 0, 0, 0.35);
}

.hero-controls svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.hero-dots {
  display: flex;
  align-items: center;
}

.hero-dots button {
  min-width: 1.5rem;
}

.hero-dots span {
  display: block;
  width: 1rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.38);
  transition: width 220ms ease, background 220ms ease;
}

.hero-dots button[aria-current="true"] span {
  width: 1.5rem;
  background: var(--paper-bright);
}

.portfolio-section {
  padding: clamp(5rem, 10vw, 10rem) max(1.5rem, calc((100% - 92rem) / 2));
  background: var(--paper);
  color: var(--ink);
}

.portfolio-section.is-collection {
  padding-top: 2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 0.0625rem solid var(--line-light);
}

.section-heading p,
.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  align-items: start;
  padding-top: clamp(2rem, 5vw, 5rem);
}

.gallery-item {
  grid-column: span 6;
  margin: 0;
}

.gallery-item.is-lead,
.gallery-item.is-panorama {
  grid-column: 1 / -1;
}

.gallery-item.is-portrait {
  grid-column: span 4;
}

.gallery-button,
.award-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
  background: #0a0a0a;
}

.gallery-button img,
.award-image img {
  width: 100%;
  height: auto;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.gallery-button::after,
.award-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 35%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.gallery-button:hover img,
.award-image:hover img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.gallery-button:hover::after,
.award-image:hover::after {
  opacity: 1;
}

.gallery-index {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-button:hover .gallery-index,
.gallery-button:focus-visible .gallery-index {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item figcaption {
  padding-top: 0.65rem;
  color: rgba(8, 8, 8, 0.68);
  font-size: 0.72rem;
}

.collection-intro {
  min-height: min(34rem, 68svh);
  padding: calc(var(--header-height) + clamp(4rem, 9vw, 9rem)) max(1.5rem, calc((100% - 92rem) / 2)) clamp(4rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

.collection-intro .eyebrow {
  margin-bottom: 1rem;
  color: var(--muted);
}

.collection-intro h1 {
  margin: 0;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.profile-essay {
  padding: clamp(5rem, 10vw, 10rem) max(1.5rem, calc((100% - 80rem) / 2));
  background: var(--paper);
  color: var(--ink);
}

.profile-essay blockquote {
  margin: 0;
}

.profile-essay blockquote > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.profile-essay blockquote > p::first-line {
  font-weight: 700;
}

.profile-essay blockquote footer {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-essay blockquote footer img {
  width: 4.75rem;
  height: 3rem;
  object-fit: cover;
  filter: grayscale(1);
}

.profile-essay cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.awards {
  padding: clamp(5rem, 10vw, 10rem) max(1.5rem, calc((100% - 92rem) / 2));
  background: var(--ink-soft);
}

.award {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  padding-block: clamp(3rem, 6vw, 6rem);
  border-top: 0.0625rem solid var(--line-dark);
}

.award.is-reversed {
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.75fr);
}

.award.is-reversed .award-copy {
  order: 2;
}

.award-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.award-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.award-copy strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-image img {
  max-height: 48rem;
  object-fit: contain;
}

.contact-page-shell {
  min-height: 100svh;
  padding: calc(var(--header-height) + 3rem) max(1.5rem, calc((100% - 82rem) / 2)) 4rem;
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  background: var(--ink);
}

.contact-art {
  position: relative;
}

.contact-art::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
}

.contact-art img {
  position: relative;
  width: 100%;
  background: white;
}

.contact-copy .eyebrow {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-copy h1 {
  margin: 0 0 clamp(2rem, 5vw, 5rem);
  max-width: 9ch;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.contact-email,
.contact-phone {
  display: block;
  width: fit-content;
  border-bottom: 0.0625rem solid var(--line-dark);
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-email {
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.whatsapp-label {
  margin: 3rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.whatsapp-label svg {
  width: 1rem;
  fill: currentColor;
}

.contact-phone {
  font-size: clamp(1.5rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.contact-email:hover,
.contact-phone:hover {
  border-color: var(--accent);
  color: var(--paper-bright);
}

.photo-story {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.photo-story > img,
.photo-story-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-story > img {
  object-fit: cover;
}

.photo-story-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.photo-story-copy {
  position: absolute;
  z-index: 2;
  right: max(1.5rem, calc((100% - 92rem) / 2));
  bottom: clamp(3rem, 8vw, 8rem);
  left: max(1.5rem, calc((100% - 92rem) / 2));
}

.photo-story-copy > p {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.photo-story-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.74;
}

.photo-story-copy div {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.not-found {
  min-height: 78svh;
  padding: calc(var(--header-height) + 6rem) max(1.5rem, calc((100% - 72rem) / 2)) 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found .eyebrow {
  color: var(--muted);
}

.not-found h1 {
  margin: 1rem 0 2rem;
  max-width: 10ch;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.not-found p:not(.eyebrow) {
  max-width: 32rem;
  color: var(--muted);
}

.not-found > a {
  width: fit-content;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 0.0625rem solid var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-navigation {
  padding: clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100% - 92rem) / 2));
  border-top: 0.0625rem solid var(--line-dark);
  background: #050505;
  color: var(--paper-bright);
}

.collection-navigation-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 4rem);
  border-bottom: 0.0625rem solid var(--line-dark);
}

.collection-navigation-heading .eyebrow {
  color: var(--muted);
}

.collection-navigation-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.collection-menu {
  margin: 0;
  padding: clamp(1.25rem, 2vw, 2rem) 0 clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
}

.collection-menu a {
  position: relative;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem 0.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.collection-menu a::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.collection-menu a[aria-current="page"] {
  color: var(--paper-bright);
}

.collection-menu a[aria-current="page"]::before {
  opacity: 1;
  transform: scale(1);
}

.collection-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 0.0625rem solid var(--line-dark);
}

.collection-pager-link {
  min-height: clamp(8.5rem, 15vw, 13rem);
  padding: clamp(1.25rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: color 180ms ease, background 180ms ease;
}

.collection-pager-link.is-previous {
  border-right: 0.0625rem solid var(--line-dark);
}

.collection-pager-link.is-next {
  align-items: flex-end;
  text-align: right;
}

.collection-pager-direction {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-pager-direction span {
  color: var(--accent);
  font-size: 1rem;
}

.collection-pager-link strong {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

@media (hover: hover) {
  .collection-menu a:hover,
  .collection-pager-link:hover {
    background: rgba(255, 255, 255, 0.045);
    color: var(--paper-bright);
  }
}

.site-footer {
  padding: 4rem max(1.5rem, calc((100% - 92rem) / 2));
  border-top: 0.0625rem solid var(--line-dark);
  background: #050505;
  color: var(--muted);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-shell p,
.footer-shell address {
  margin: 0;
}

.footer-name {
  color: var(--paper-bright);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-shell address {
  display: grid;
  gap: 0.4rem;
  font-style: normal;
}

.footer-shell address a {
  width: fit-content;
  transition: color 160ms ease;
}

.footer-shell address a:hover {
  color: var(--paper-bright);
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.96);
  color: var(--paper-bright);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.96);
}

.lightbox-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 5rem;
  align-items: center;
}

.lightbox figure {
  width: 100%;
  height: calc(100svh - 4rem);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 2rem;
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
}

.lightbox-close svg,
.lightbox-arrow svg {
  width: 1.25rem;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.lightbox-arrow {
  min-width: 2.75rem;
  min-height: 4rem;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 74rem) {
  .header-contact {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 56rem) {
  :root {
    --header-height: 4.75rem;
    --shell: calc(100% - 2rem);
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-height: 2.75rem;
    justify-content: center;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    align-content: center;
    gap: 0.45rem;
    width: 2.75rem;
    height: 2.75rem;
    cursor: pointer;
  }

  .menu-toggle > span[aria-hidden="true"] {
    width: 1.5rem;
    height: 0.0625rem;
    justify-self: end;
    background: currentColor;
    transition: transform 220ms ease, width 220ms ease;
  }

  .menu-toggle > span[aria-hidden="true"]:last-child {
    width: 1rem;
  }

  .menu-toggle[aria-expanded="true"] > span[aria-hidden="true"]:first-of-type {
    width: 1.5rem;
    transform: translateY(0.25rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span[aria-hidden="true"]:last-child {
    width: 1.5rem;
    transform: translateY(-0.25rem) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: calc(var(--header-height) + 2rem) 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background: rgba(8, 8, 8, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-navigation > ul {
    display: block;
  }

  .site-navigation > ul > li {
    border-top: 0.0625rem solid var(--line-dark);
  }

  .site-navigation > ul > li > a,
  .nav-group-toggle {
    width: 100%;
    min-height: 4rem;
    justify-content: space-between;
    font-size: clamp(1.35rem, 6vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .site-navigation > ul > li > a::after,
  .nav-group-toggle::after {
    display: none;
  }

  .nav-group-toggle svg {
    width: 0.9rem;
  }

  .nav-submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu {
    max-height: 0;
    padding: 0;
  }

  .nav-group-toggle[aria-expanded="true"] + .nav-submenu {
    max-height: 20rem;
    padding: 0 0 1.25rem;
  }

  .nav-submenu a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.7rem;
  }

  .mobile-contact {
    display: grid;
    gap: 0.5rem;
    padding-top: 2rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-contact a,
  .footer-shell address a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .hero-identity {
    top: auto;
    right: 1rem;
    bottom: 8.75rem;
    left: 1rem;
    transform: none;
  }

  .hero-identity p {
    margin-left: 0.15rem;
  }

  .hero-identity h1 {
    font-size: clamp(4.4rem, 23vw, 8rem);
    line-height: 0.78;
  }

  .hero-identity h1 span:last-child {
    margin-left: 0.26em;
  }

  .slide-caption {
    top: calc(var(--header-height) + 2.5rem);
    right: 1rem;
    bottom: auto;
    max-width: 14rem;
  }

  .slide-caption strong {
    font-size: 1.4rem;
  }

  .hero-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-dots button {
    min-width: 2.75rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-bottom: 1rem;
  }

  .gallery-item,
  .gallery-item.is-portrait {
    grid-column: span 6;
  }

  .gallery-item.is-lead,
  .gallery-item.is-panorama {
    grid-column: 1 / -1;
  }

  .collection-intro {
    min-height: 26rem;
  }

  .collection-navigation-heading {
    display: block;
  }

  .collection-navigation-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .collection-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .award,
  .award.is-reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .award.is-reversed .award-copy {
    order: 0;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 5rem);
  }

  .contact-art {
    width: min(80%, 24rem);
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 38rem) {
  .portfolio-section {
    padding-inline: 0.75rem;
  }

  .section-heading {
    padding-inline: 0.75rem;
  }

  .gallery-grid {
    gap: 0.75rem;
  }

  .gallery-item,
  .gallery-item.is-portrait,
  .gallery-item.is-lead,
  .gallery-item.is-panorama {
    grid-column: 1 / -1;
  }

  .collection-intro h1 {
    font-size: clamp(3.25rem, 19vw, 7rem);
  }

  .collection-navigation {
    padding: 4rem 1rem;
  }

  .collection-navigation-heading h2 {
    font-size: clamp(3.25rem, 18vw, 5rem);
  }

  .collection-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .collection-menu li {
    border-top: 0.0625rem solid var(--line-dark);
  }

  .collection-pager {
    grid-template-columns: 1fr;
  }

  .collection-pager-link {
    min-height: 7.5rem;
    padding: 1.25rem;
    gap: 1.5rem;
  }

  .collection-pager-link.is-previous {
    border-right: 0;
    border-bottom: 0.0625rem solid var(--line-dark);
  }

  .collection-pager-link strong {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .profile-essay {
    padding-inline: 1.25rem;
  }

  .profile-essay blockquote > p {
    font-size: 1.05rem;
    line-height: 1.68;
  }

  .contact-art {
    width: calc(100% - 1.25rem);
  }

  .contact-copy h1 {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .contact-phone {
    font-size: 1.6rem;
  }

  .photo-story-copy h1 {
    font-size: clamp(3.8rem, 21vw, 6.5rem);
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .lightbox-frame {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  }

  .lightbox figure {
    height: calc(100svh - 6rem);
  }

  .lightbox figcaption {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
