:root {
  --ink: #f1ede6;
  --soft-ink: #cfc6bb;
  --muted: #a9a29a;
  --paper: #0b0a09;
  --porcelain: #f1ede6;
  --bone: #151310;
  --charcoal: #080807;
  --panel: #11100e;
  --reverse: #0b0a09;
  --line: rgba(241, 237, 230, 0.13);
  --warm-line: rgba(188, 166, 110, 0.28);
  --accent: #bca66e;
  --cyan: #bca66e;
  --danger: #b85c54;
  --focus: rgba(241, 237, 230, 0.86);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Didot", "Bodoni 72", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Neue Haas Grotesk Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.gallery-open,
body.print-order-open,
body.image-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

::selection {
  background: rgba(188, 166, 110, 0.34);
  color: var(--porcelain);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  color: var(--porcelain);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 84px;
  padding: 24px max(28px, calc((100vw - 1560px) / 2 + 34px));
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, min-height 220ms ease, padding 220ms ease;
  z-index: 30;
}

.site-header.is-scrolled,
.site-header.is-open {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.94), rgba(11, 10, 9, 0.78)),
    rgba(11, 10, 9, 0.9);
  border-bottom: 1px solid var(--line);
  color: var(--porcelain);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  min-height: 68px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
  position: relative;
  z-index: 32;
}

.brand span {
  font-family: var(--display);
  font-size: 25px;
  text-transform: none;
  transition: font-size 220ms ease;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand span {
  font-size: 23px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 32;
}

.header-social {
  align-items: center;
  border: 1px solid transparent;
  color: currentColor;
  display: none;
  height: 30px;
  justify-content: center;
  opacity: 0.88;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 30px;
}

.header-social svg {
  display: block;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.header-social:hover,
.header-social:focus-visible {
  border-color: rgba(246, 246, 243, 0.26);
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.social-link)::after,
.text-link::after {
  background: currentColor;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:not(.social-link):hover::after,
.site-nav a:not(.social-link):focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .social-link {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  opacity: 0.86;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 20px;
}

.site-nav .social-link svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

.site-nav .social-link:hover,
.site-nav .social-link:focus-visible {
  border-color: rgba(246, 246, 243, 0.22);
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: currentColor;
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
  z-index: 32;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(246, 246, 243, 0.08);
  border-color: rgba(246, 246, 243, 0.34);
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 180ms ease;
  width: 24px;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  background: var(--charcoal);
  color: var(--porcelain);
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  position: relative;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media picture,
.about-image picture {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.18) 48%, rgba(8, 8, 7, 0.72)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.8), rgba(8, 8, 7, 0.04) 58%);
}

.hero-content {
  align-self: end;
  max-width: 760px;
  padding: 164px max(28px, calc((100vw - 1560px) / 2 + 34px)) 142px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

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

h1,
h2 {
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  font-family: var(--display);
  font-size: 76px;
  margin-bottom: 24px;
  max-width: 720px;
  text-transform: none;
}

h2 {
  font-family: var(--display);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.05;
  max-width: 940px;
  text-transform: none;
}

.hero-copy {
  color: rgba(241, 237, 230, 0.82);
  font-size: 20px;
  line-height: 1.55;
  max-width: 610px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.text-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--porcelain);
}

.hero-secondary,
.hero-primary {
  align-items: center;
  display: inline-flex;
  min-height: 42px;
}

.hero-secondary {
  margin-right: 8px;
}

.hero-primary {
  background: rgba(241, 237, 230, 0.05);
  border: 1px solid rgba(241, 237, 230, 0.46);
  color: var(--porcelain);
  padding: 0 19px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-primary::after {
  display: none;
}

.hero-primary:hover,
.hero-primary:focus-visible {
  background: var(--porcelain);
  color: var(--reverse);
  transform: translateY(-1px);
}

.hero-notes {
  align-items: center;
  border-top: 1px solid var(--warm-line);
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  left: max(28px, calc((100vw - 1560px) / 2 + 34px));
  padding: 18px 0;
  position: absolute;
  right: max(28px, calc((100vw - 1560px) / 2 + 34px));
  z-index: 1;
}

.hero-notes span {
  color: rgba(241, 237, 230, 0.74);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-pad {
  padding: 118px max(28px, calc((100vw - 1480px) / 2 + 34px));
}

#work,
#services,
#fine-art,
#print-shop,
#about,
#contact {
  scroll-margin-top: 92px;
}

.section-heading {
  margin-bottom: 54px;
  max-width: 820px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.work-section {
  background: var(--charcoal);
  color: var(--porcelain);
}

.editorial-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 0;
}

.work-tile,
.fine-image {
  background: #090807;
  border: 1px solid rgba(241, 237, 230, 0.08);
  color: var(--porcelain);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.work-tile {
  aspect-ratio: auto;
  grid-column: span 3;
  grid-row: span var(--tile-rows, 52);
  min-height: 0;
}

.fine-image {
  aspect-ratio: 4 / 5;
}

.work-tile img,
.fine-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease, opacity 520ms ease;
}

.work-tile picture,
.fine-image picture,
.gallery-frame picture {
  display: block;
  height: 100%;
  width: 100%;
}

.work-tile.is-letterboxed img {
  object-fit: contain;
}

.work-tile::after {
  background:
    linear-gradient(180deg, transparent 36%, rgba(8, 8, 7, 0.82)),
    linear-gradient(90deg, rgba(188, 166, 110, 0.12), transparent 42%);
  content: "";
  inset: 0;
  opacity: 1;
  position: absolute;
  transition: opacity 240ms ease;
}

.fine-image::after {
  background: linear-gradient(180deg, transparent 48%, rgba(8, 8, 7, 0.78));
  content: "";
  inset: 0;
  opacity: 1;
  position: absolute;
  transition: opacity 240ms ease;
}

.tile-caption {
  bottom: 22px;
  display: grid;
  gap: 7px;
  left: 22px;
  max-width: calc(100% - 44px);
  opacity: 1;
  position: absolute;
  transition: opacity 240ms ease, transform 240ms ease;
  transform: translateY(0);
  z-index: 1;
}

.tile-category,
.tile-action {
  color: rgba(241, 237, 230, 0.7);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.tile-title {
  color: var(--porcelain);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.tile-action {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.work-tile:hover img,
.work-tile:focus-visible img,
.fine-image:hover img,
.fine-image:focus-visible img {
  opacity: 0.88;
  transform: scale(1.035);
}

.work-tile:hover::after,
.work-tile:focus-visible::after,
.fine-image:hover::after,
.fine-image:focus-visible::after {
  opacity: 1;
}

.work-tile:hover .tile-action,
.work-tile:focus-visible .tile-action,
.fine-image:hover .tile-action,
.fine-image:focus-visible .tile-action {
  opacity: 1;
  transform: translateY(0);
}

.tile-large {
  grid-column: span 6;
}

.tile-wide {
  grid-column: span 6;
}

.tile-tall {
  grid-column: span 3;
}

.services-band {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--porcelain);
  overflow: hidden;
  padding: 28px max(28px, calc((100vw - 1480px) / 2 + 34px));
}

.services-band div {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1480px;
  min-width: 0;
}

.services-band span {
  border-right: 1px solid rgba(241, 237, 230, 0.12);
  color: rgba(241, 237, 230, 0.76);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 42px;
  padding: 0 20px;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
}

.services-band span:first-child {
  padding-left: 0;
}

.services-band span:last-child {
  border-right: 0;
}

.service-detail {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  color: var(--porcelain);
}

.service-detail .section-heading {
  max-width: 900px;
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
  gap: 0;
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.service-grid article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  min-width: 0;
  padding: 28px 0;
}

.service-grid article:first-child {
  border-top-color: transparent;
}

.service-grid h3 {
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
}

.service-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
}

.section-cta {
  margin-top: 34px;
}

.fine-art-section {
  background: #0f0d0b;
  border-top: 1px solid var(--line);
  color: var(--porcelain);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  max-width: none;
}

.fine-art-copy {
  align-self: end;
}

.fine-art-copy p {
  color: var(--soft-ink);
  margin-bottom: 22px;
  max-width: 410px;
}

.fine-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 1fr 1fr;
  min-height: 0;
}

.fine-tall {
  aspect-ratio: 2 / 3;
  grid-row: span 2;
}

.fine-wide {
  aspect-ratio: 16 / 10;
  grid-column: span 2;
}

.fine-portrait {
  aspect-ratio: 2 / 3;
}

.fine-portrait img {
  object-fit: contain;
}

.print-shop {
  background: var(--panel);
  border-top: 1px solid var(--line);
  color: var(--porcelain);
}

.print-shop-layout {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin-bottom: 48px;
}

.print-shop-copy {
  max-width: 920px;
}

.print-shop-copy h2 {
  margin-bottom: 24px;
}

.print-shop-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
}

.print-shop-note {
  border-top: 1px solid var(--warm-line);
  display: grid;
  gap: 14px;
  padding-top: 20px;
}

.print-shop-note span {
  color: rgba(241, 237, 230, 0.76);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.print-shop-grid {
  display: grid;
  gap: 28px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.print-card {
  background: rgba(241, 237, 230, 0.035);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.print-card-image {
  background: #101012;
  margin: 0;
  overflow: hidden;
}

.print-card-image img,
.print-card-placeholder {
  aspect-ratio: 4 / 5;
  height: 100%;
}

.print-card-image img {
  object-fit: cover;
  transition: opacity 420ms ease, transform 520ms ease;
}

.print-card-placeholder {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.28), rgba(3, 3, 3, 0.82)),
    #101012;
  color: rgba(255, 250, 242, 0.82);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  padding: 18px;
  text-transform: uppercase;
}

.print-card-image picture {
  display: block;
  height: 100%;
}

.print-card:hover .print-card-image img,
.print-card:focus-within .print-card-image img {
  opacity: 0.9;
  transform: scale(1.025);
}

.print-card-content {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.print-card-series {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.print-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin: -10px 0 0;
  text-transform: uppercase;
}

.print-card-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.print-card-specs {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px 16px;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0;
  padding-top: 18px;
}

.print-card-specs dt,
.print-card-specs dd {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.print-card-specs dt {
  color: rgba(241, 237, 230, 0.58);
  font-weight: 800;
  text-transform: uppercase;
}

.print-card-specs dd {
  color: var(--soft-ink);
}

.print-card-purchase {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.print-card-price {
  color: var(--porcelain);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.shop-buy-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(241, 237, 230, 0.38);
  color: var(--porcelain);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.shop-buy-button:hover,
.shop-buy-button:focus-visible {
  background: var(--porcelain);
  color: var(--reverse);
  transform: translateY(-1px);
}

.print-shop-status {
  color: var(--muted);
  font-size: 12px;
  margin: 26px 0 0;
  text-transform: uppercase;
}

.print-shop-empty {
  border: 1px solid var(--line);
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
}

.print-order-modal {
  background: rgba(8, 8, 7, 0.84);
  color: var(--porcelain);
  display: grid;
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 28px;
  pointer-events: none;
  place-items: center;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 70;
}

.print-order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.print-order-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  max-width: 980px;
  min-height: 0;
  padding: 28px;
  position: relative;
  width: min(100%, 980px);
}

.print-order-close {
  align-items: center;
  background: rgba(241, 237, 230, 0.08);
  border: 1px solid rgba(241, 237, 230, 0.22);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 180ms ease, transform 180ms ease;
  width: 42px;
  z-index: 2;
}

.print-order-close::before,
.print-order-close::after {
  background: var(--porcelain);
  content: "";
  height: 1px;
  position: absolute;
  width: 18px;
}

.print-order-close::before {
  transform: rotate(45deg);
}

.print-order-close::after {
  transform: rotate(-45deg);
}

.print-order-close:hover,
.print-order-close:focus-visible {
  background: var(--porcelain);
  transform: translateY(-1px);
}

.print-order-close:hover::before,
.print-order-close:hover::after,
.print-order-close:focus-visible::before,
.print-order-close:focus-visible::after {
  background: var(--reverse);
}

.print-order-summary {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  margin-bottom: 28px;
  padding-right: 56px;
}

.print-order-image {
  background: #101012;
  margin: 0;
  overflow: hidden;
}

.print-order-image:empty {
  aspect-ratio: 4 / 5;
}

.print-order-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.print-order-heading {
  min-width: 0;
}

.print-order-heading h2 {
  font-size: 46px;
  margin: 0 0 14px;
}

.print-order-heading p:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.print-order-form {
  display: grid;
  gap: 22px;
}

.print-order-fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.print-order-form label {
  display: grid;
  gap: 8px;
}

.print-order-form label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.print-order-form input,
.print-order-form select {
  background: rgba(241, 237, 230, 0.04);
  border: 1px solid rgba(241, 237, 230, 0.2);
  border-radius: 0;
  color: var(--porcelain);
  color-scheme: dark;
  min-height: 46px;
  padding: 0 13px;
  width: 100%;
}

.print-order-form input[readonly] {
  color: var(--muted);
}

.print-order-wide {
  grid-column: 1 / -1;
}

.print-order-delivery {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.print-order-costs {
  display: grid;
  gap: 12px;
}

.print-order-costs p {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.print-order-delivery-options {
  border: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.print-order-delivery-options legend {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.print-order-form .print-order-delivery-option {
  align-items: center;
  border: 1px solid rgba(241, 237, 230, 0.16);
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  padding: 12px 14px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.print-order-form .print-order-delivery-option input {
  accent-color: var(--accent);
  flex: 0 0 auto;
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.print-order-form .print-order-delivery-option span {
  color: var(--soft-ink);
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  margin: 0;
  text-transform: none;
}

.print-order-form .print-order-delivery-option:hover,
.print-order-form .print-order-delivery-option:focus-within {
  border-color: rgba(241, 237, 230, 0.42);
}

.print-order-form .print-order-delivery-option:has(input:checked) {
  background: rgba(188, 166, 110, 0.14);
  border-color: var(--accent);
}

.print-order-form .print-order-delivery-option:has(input:checked) span {
  color: var(--porcelain);
}

.print-order-note {
  color: var(--muted) !important;
}

.print-order-submit {
  justify-self: start;
  min-width: 190px;
}

.print-order-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.print-order-status {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
  min-height: 18px;
  text-transform: uppercase;
}

.about {
  align-items: center;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  color: var(--porcelain);
  display: grid;
  gap: 82px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 690px;
  text-wrap: pretty;
}

.about-image {
  margin: 0;
}

.about-image img {
  aspect-ratio: 1920 / 1193;
  height: auto;
  object-fit: cover;
  object-position: left center;
}

.about-image figcaption {
  color: rgba(241, 237, 230, 0.58);
  font-size: 12px;
  margin-top: 14px;
  text-transform: uppercase;
}

.contact {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  color: var(--porcelain);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
}

.contact h2 {
  margin-bottom: 26px;
}

.contact p {
  color: rgba(241, 237, 230, 0.72);
  line-height: 1.65;
  max-width: 470px;
  text-wrap: pretty;
}

.contact .section-kicker {
  color: var(--cyan);
}

.contact .text-link {
  margin-top: 18px;
}

.client-login-form,
.inquiry-form {
  display: grid;
  gap: 20px;
}

.client-login-form label,
.inquiry-form label {
  display: grid;
  gap: 8px;
}

.client-login-form span,
.inquiry-form span {
  color: rgba(241, 237, 230, 0.66);
  font-size: 12px;
  text-transform: uppercase;
}

.client-login-form input,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241, 237, 230, 0.28);
  color-scheme: dark;
  color: var(--porcelain);
  caret-color: var(--accent);
  min-height: 46px;
  outline: 0;
  padding: 8px 0 12px;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
  width: 100%;
}

.client-login-form input {
  color-scheme: dark;
}

.inquiry-form select option {
  color: var(--reverse);
}

.inquiry-form textarea {
  min-height: 138px;
  resize: vertical;
}

.inquiry-form .form-honeypot {
  display: none;
}

.client-login-form input:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: rgba(241, 237, 230, 0.04);
  border-bottom-color: var(--porcelain);
  padding-left: 10px;
  padding-right: 10px;
}

.inquiry-form.was-submitted input:invalid,
.client-login-form.was-submitted input:invalid,
.inquiry-form.was-submitted textarea:invalid {
  border-bottom-color: var(--danger);
}

.submit-button {
  background: transparent;
  border: 1px solid rgba(241, 237, 230, 0.44);
  color: var(--porcelain);
  cursor: pointer;
  justify-self: start;
  margin-top: 10px;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--porcelain);
  color: var(--reverse);
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  color: rgba(241, 237, 230, 0.72);
  font-size: 14px;
  margin: 0;
  min-height: 24px;
}

.client-area-main {
  background: var(--charcoal);
  color: var(--porcelain);
}

.client-login-section {
  background: var(--charcoal);
  color: var(--porcelain);
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.client-login-media,
.client-login-shade {
  inset: 0;
  position: absolute;
}

.client-login-media img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.client-login-media picture {
  display: block;
  height: 100%;
  width: 100%;
}

.client-login-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92), rgba(8, 8, 7, 0.32) 54%, rgba(8, 8, 7, 0.84)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.02) 62%);
}

.client-login-content {
  align-items: center;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 430px);
  min-height: 100svh;
  padding: 158px max(28px, calc((100vw - 1480px) / 2 + 34px)) 96px;
  position: relative;
  z-index: 1;
}

.client-login-copy {
  max-width: 780px;
}

.client-login-form {
  background: rgba(11, 10, 9, 0.66);
  border: 1px solid rgba(241, 237, 230, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  padding: 28px;
  width: 100%;
}

.client-login-form .submit-button {
  justify-self: start;
}

.client-gallery-section {
  background: var(--charcoal);
  color: var(--porcelain);
  min-height: 100svh;
  padding-top: 128px;
}

.client-gallery-intro {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 28px;
  padding-bottom: 30px;
}

.client-gallery-intro h2 {
  margin-bottom: 18px;
}

.client-gallery-intro p:last-child {
  color: rgba(241, 237, 230, 0.72);
  margin-bottom: 0;
  max-width: 680px;
}

.client-gallery-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.client-gallery-actions .submit-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin-top: 0;
  min-height: 42px;
  text-decoration: none;
}

.client-gallery-actions .gallery-back {
  min-height: 42px;
}

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

.client-gallery-item {
  background: var(--panel);
  grid-column: span 4;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.client-gallery-item.is-wide {
  grid-column: span 8;
}

.client-gallery-item img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.client-gallery-item.is-wide img {
  aspect-ratio: 16 / 10;
}

.client-gallery-message,
.client-gallery-empty {
  background: rgba(241, 237, 230, 0.04);
  border: 1px solid var(--line);
  color: rgba(241, 237, 230, 0.72);
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
}

.client-gallery-message.is-loading {
  overflow: hidden;
  position: relative;
}

.client-gallery-message.is-loading::after {
  background: linear-gradient(90deg, transparent, rgba(241, 237, 230, 0.08), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
  animation: loading-sheen 1400ms var(--ease) infinite;
}

.client-gallery-empty {
  display: grid;
  gap: 16px;
}

.client-gallery-empty p {
  margin: 0;
  max-width: 680px;
}

.site-footer {
  align-items: center;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  color: rgba(241, 237, 230, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px 34px;
}

.site-footer p,
.site-footer a {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}

.gallery-modal {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.96)),
    var(--paper);
  color: var(--porcelain);
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 60;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-panel {
  min-height: 100%;
  padding: 22px 34px 80px;
}

.gallery-header {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.76)),
    rgba(3, 3, 3, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  margin: -22px -34px 66px;
  padding: 18px 34px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.gallery-back {
  align-items: center;
  background: rgba(246, 246, 243, 0.06);
  border: 1px solid rgba(246, 246, 243, 0.14);
  color: rgba(246, 246, 243, 0.78);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-back::before {
  border-left: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  height: 8px;
  transform: rotate(-45deg);
  width: 8px;
}

.gallery-back:hover,
.gallery-back:focus-visible {
  background: rgba(246, 246, 243, 0.1);
  border-color: rgba(246, 246, 243, 0.32);
  color: var(--porcelain);
  transform: translateY(-1px);
}

.gallery-close {
  background: rgba(246, 246, 243, 0.06);
  border: 1px solid rgba(246, 246, 243, 0.18);
  color: var(--porcelain);
  cursor: pointer;
  height: 42px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
}

.gallery-close::before,
.gallery-close::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 9px;
  position: absolute;
  top: 20px;
  width: 22px;
}

.gallery-close::before {
  transform: rotate(45deg);
}

.gallery-close::after {
  transform: rotate(-45deg);
}

.gallery-close:hover,
.gallery-close:focus-visible,
.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(246, 246, 243, 0.12);
  border-color: rgba(246, 246, 243, 0.36);
  transform: translateY(-1px);
}

.gallery-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 980px;
}

.gallery-intro h2 {
  margin: 0;
}

.gallery-intro p:last-child {
  color: rgba(246, 246, 243, 0.72);
  font-size: 18px;
  max-width: 640px;
  text-wrap: pretty;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0;
}

.gallery-meta dt,
.gallery-meta dd {
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.gallery-meta dt {
  color: var(--accent);
  font-weight: 700;
}

.gallery-meta dd {
  color: rgba(241, 237, 230, 0.72);
  margin-left: -20px;
}

.gallery-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(12, 1fr);
  touch-action: pan-y;
}

.gallery-frame {
  aspect-ratio: 4 / 5;
  background: var(--panel);
  border: 0;
  color: inherit;
  cursor: zoom-in;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-frame-featured {
  aspect-ratio: 16 / 10;
  grid-column: span 8;
}

.gallery-frame-studio-featured {
  aspect-ratio: 1241 / 2048;
  grid-column: span 4;
}

.gallery-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 180ms ease, transform 420ms ease;
  width: 100%;
}

.gallery-frame:hover img,
.gallery-frame:focus-visible img {
  opacity: 0.86;
  transform: scale(1.02);
}

.gallery-project-nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 24px;
}

.gallery-project-nav .gallery-back:last-child::before {
  order: 2;
  transform: rotate(135deg);
}

@keyframes loading-sheen {
  to {
    transform: translateX(100%);
  }
}

.image-lightbox-nav {
  align-items: center;
  background: rgba(3, 3, 3, 0.62);
  border: 1px solid rgba(246, 246, 243, 0.28);
  backdrop-filter: blur(12px);
  color: var(--porcelain);
  cursor: pointer;
  display: flex;
  height: 52px;
  justify-content: center;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  width: 52px;
}

.image-lightbox-nav {
  z-index: 82;
}

.image-lightbox-nav::before {
  border-left: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  height: 13px;
  width: 13px;
}

.image-lightbox-nav-prev {
  left: 24px;
}

.image-lightbox-nav-next {
  right: 24px;
}

.image-lightbox-nav-prev::before {
  margin-left: 5px;
  transform: rotate(-45deg);
}

.image-lightbox-nav-next::before {
  margin-right: 5px;
  transform: rotate(135deg);
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  background: rgba(246, 246, 243, 0.12);
  border-color: rgba(246, 246, 243, 0.44);
}

.image-lightbox-nav:disabled {
  cursor: default;
  opacity: 0.22;
  pointer-events: none;
}

.image-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.965);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  padding: 34px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 80;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox figure {
  display: grid;
  justify-items: center;
  margin: 0;
  max-height: 90vh;
  max-width: 92vw;
}

.image-lightbox img {
  height: auto;
  max-height: 84vh;
  max-width: 92vw;
  object-fit: contain;
  width: auto;
}

.image-lightbox figcaption {
  color: rgba(246, 246, 243, 0.68);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 14px;
  max-width: 72ch;
  text-align: center;
  text-transform: uppercase;
}

.image-lightbox-close {
  background: rgba(3, 3, 3, 0.62);
  border: 1px solid rgba(246, 246, 243, 0.22);
  backdrop-filter: blur(12px);
  color: var(--porcelain);
  cursor: pointer;
  height: 44px;
  position: absolute;
  right: 26px;
  top: 22px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 44px;
}

.image-lightbox-close::before,
.image-lightbox-close::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 10px;
  position: absolute;
  top: 22px;
  width: 24px;
}

.image-lightbox-close::before {
  transform: rotate(45deg);
}

.image-lightbox-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .editorial-grid {
    gap: 16px;
    grid-auto-rows: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .work-tile {
    grid-column: span 3;
  }

  .tile-large {
    grid-column: span 6;
  }

  .tile-wide {
    grid-column: span 6;
  }

  .tile-tall {
    grid-column: span 3;
  }

  .fine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fine-tall {
    grid-row: span 1;
  }

  .about,
  .contact,
  .client-login-content,
  .split-heading,
  .print-shop-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .print-order-summary {
    align-items: start;
    grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  }

  .about-image {
    max-width: 520px;
  }

  .service-grid {
    border-top: 1px solid var(--line);
  }

  .service-grid article {
    border-bottom: 1px solid var(--line);
    border-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .service-grid p {
    max-width: 620px;
  }

  .client-login-content {
    align-content: end;
    gap: 46px;
  }

  .client-login-form {
    max-width: 520px;
  }

  .client-gallery-intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .client-gallery-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 18px 20px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: 66px;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .header-social {
    display: inline-flex;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    font-size: 24px;
    gap: 22px;
    height: 100vh;
    inset: 0;
    justify-content: flex-start;
    min-height: 100svh;
    opacity: 0;
    overflow-y: auto;
    padding: 86px 28px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 31;
  }

  .site-nav a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .site-nav .social-link {
    height: 44px;
    width: 44px;
  }

  .site-nav .social-link svg {
    height: 30px;
    width: 30px;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand span {
    font-size: 20px;
  }

  .site-header.is-scrolled .brand span {
    font-size: 19px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding: 132px 20px 128px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 29px;
    line-height: 1.02;
  }

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

  .hero-actions {
    gap: 12px;
  }

  .hero-primary {
    padding: 0 16px;
  }

  .hero-notes {
    align-items: flex-start;
    bottom: 0;
    flex-direction: column;
    gap: 8px;
    left: 20px;
    right: 20px;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .editorial-grid {
    gap: 12px;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-tile {
    grid-column: auto;
    grid-row: auto;
    --tile-rows: initial;
  }

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

  .tile-large,
  .tile-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fine-wide {
    grid-column: 1 / -1;
  }

  .tile-large,
  .tile-wide {
    aspect-ratio: 5 / 6;
  }

  .tile-tall,
  .work-tile:not(.tile-large, .tile-wide, .tile-tall),
  .fine-image:not(.fine-tall, .fine-wide, .fine-portrait) {
    aspect-ratio: 3 / 4;
    grid-row: auto;
  }

  .fine-tall,
  .fine-portrait {
    grid-column: 1 / -1;
  }

  .fine-portrait {
    aspect-ratio: 2 / 3;
  }

  .work-tile::after,
  .fine-image::after,
  .tile-caption {
    opacity: 1;
  }

  .tile-caption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    transform: none;
  }

  .tile-category,
  .tile-action {
    font-size: 10px;
  }

  .tile-title {
    font-size: 23px;
  }

  .work-tile:not(.tile-large, .tile-wide) .tile-caption {
    gap: 5px;
  }

  .work-tile:not(.tile-large, .tile-wide) .tile-title {
    font-size: 19px;
  }

  .services-band {
    padding: 26px 20px;
  }

  .services-band div {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    padding: 0;
  }

  .services-band span {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    font-size: 15px;
    justify-content: center;
    min-height: 58px;
    padding: 0 12px;
    text-align: center;
    white-space: normal;
  }

  .services-band span:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .services-band span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact {
    gap: 46px;
  }

  .print-shop-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .print-card-content {
    padding: 20px;
  }

  .print-card-purchase {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .print-order-modal {
    align-items: start;
    padding: 0;
  }

  .print-order-panel {
    min-height: 100svh;
    padding: 22px 20px 34px;
    width: 100%;
  }

  .print-order-summary {
    gap: 18px;
    grid-template-columns: 1fr;
    padding-right: 54px;
  }

  .print-order-image {
    max-width: 220px;
  }

  .print-order-heading h2 {
    font-size: 31px;
  }

  .print-order-fields {
    grid-template-columns: 1fr;
  }

  .print-order-submit {
    justify-self: stretch;
  }

  .client-login-content {
    padding: 124px 20px 64px;
  }

  .client-login-media img {
    object-position: 58% center;
  }

  .client-login-form .submit-button {
    justify-self: stretch;
  }

  .client-gallery-section {
    padding-top: 98px;
  }

  .client-gallery-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .client-gallery-grid {
    gap: 12px;
  }

  .client-gallery-item,
  .client-gallery-item.is-wide {
    grid-column: 1 / -1;
  }

  .submit-button {
    justify-self: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .gallery-panel {
    padding: 18px 20px 58px;
  }

  .gallery-header {
    margin: -18px -20px 46px;
    padding: 14px 20px;
  }

  .gallery-intro {
    margin-bottom: 38px;
  }

  .gallery-frame,
  .gallery-frame-featured {
    aspect-ratio: auto;
    grid-column: 1 / -1;
  }

  .gallery-frame img {
    height: auto;
    min-height: 0;
  }

  .gallery-frame picture {
    height: auto;
  }

  .image-lightbox-nav {
    height: 44px;
    width: 44px;
  }

  .image-lightbox-nav-prev {
    left: 12px;
  }

  .image-lightbox-nav-next {
    right: 12px;
  }

  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox figure {
    max-width: 94vw;
  }

  .image-lightbox img {
    max-height: 80vh;
    max-width: 94vw;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-social,
  .menu-toggle {
    height: 38px;
    width: 38px;
  }

  .site-nav {
    font-size: 23px;
    padding-left: 26px;
  }

  .hero-content {
    padding-bottom: 128px;
    padding-top: 124px;
  }

  h1 {
    font-size: 42px;
  }

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

  .client-login-content {
    gap: 34px;
  }

  .client-gallery-message,
  .client-gallery-empty {
    padding: 22px;
  }

  .services-band span {
    font-size: 14px;
    min-height: 62px;
  }

  .gallery-back {
    padding: 0 11px;
  }
}

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