:root {
  --text: #212121;
  --muted: #767676;
  --line: #dddddd;
  --background: #ffffff;
  --measure: 530px;
  --page-gutter: 32px;
  --page-width: min(1230px, calc(100vw - (var(--page-gutter) * 2)));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  touch-action: manipulation;
}

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

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

.site-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 31px 0 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.brand {
  font-family: Aboreto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-context {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 760px;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  text-transform: lowercase;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin-left: auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(35deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-35deg);
}

.mobile-section-indicator {
  display: none;
}

.mobile-section-indicator span {
  display: block;
  width: var(--page-width);
  margin: 0 auto;
}

.nav a,
.text-link {
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.text-link:hover {
  border-bottom-color: currentColor;
}

main {
  width: var(--page-width);
  margin: 0 auto;
}

section {
  scroll-margin-top: 72px;
}

#commission-types,
#deliverables,
#how-it-works,
#background,
#investment,
#contact {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 680px) minmax(430px, 500px);
  gap: clamp(42px, 4.4vw, 54px);
  align-items: stretch;
  padding-top: 78px;
  padding-bottom: 104px;
}

.hero-image {
  margin: 0;
  width: 100%;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hero-slider {
  position: relative;
  display: grid;
  gap: 0;
}

.slider-frame {
  position: relative;
  aspect-ratio: 687 / 459;
  overflow: hidden;
  cursor: ew-resize;
}

.slider-frame img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 900ms ease;
}

.slider-frame img.active {
  opacity: 1;
}

.slider-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  width: min(210px, 100%);
}

.hero-slider > .slider-controls {
  position: absolute;
  left: 0;
  bottom: -26px;
}

.slider-controls button {
  flex: 1;
  height: 12px;
  padding: 0;
  border: 0;
  border-top: 1px solid #bdbdbd;
  background: transparent;
  cursor: pointer;
}

.slider-controls button.active {
  border-top-color: var(--text);
  border-top-width: 2px;
}

.slider-controls button:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.slider-frame:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 500px;
  padding-top: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-lower {
  margin-top: auto;
}

.hero-lower .statement-block {
  margin: 0 0 24px;
}

h1,
h2,
p,
blockquote,
dl,
ol {
  margin: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 560px;
  color: #2f2f2f;
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 280;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: lowercase;
}

h2 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  text-transform: lowercase;
}

p + p {
  margin-top: 19px;
}

.lead {
  max-width: var(--measure);
}

.statement-block {
  margin: 24px 0 24px;
  padding: 18px 20px 17px;
  background: #f6f5f2;
}

.quote-frame {
  position: relative;
  min-height: 88px;
  cursor: pointer;
}

.quote-frame:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.statement-block blockquote {
  position: absolute;
  inset: 0;
  margin: 0;
  max-width: none;
  padding: 0;
  border: 0;
  font-family: inherit;
  color: #5f5f5a;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0;
  transition: opacity 700ms ease;
}

.statement-block blockquote.active {
  opacity: 1;
}

.statement-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 14px;
}

.statement-block figcaption {
  display: grid;
  gap: 3px;
  margin-top: 0;
  color: #4d4d49;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  text-align: right;
}

.statement-block figcaption span + span {
  color: var(--muted);
}

.hero-copy .text-link {
  display: inline-block;
  margin-top: 28px;
}

.primary-cta {
  appearance: none;
  display: inline-block;
  margin-top: 26px;
  padding: 13px 20px;
  border: 1.2px solid var(--text);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-copy .primary-cta {
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 24px;
  border-width: 1px;
  font-size: 16px;
}

.primary-cta:hover {
  background: var(--text);
  color: var(--background);
}

.section-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 740px);
  gap: 52px;
  align-items: start;
  padding: 92px 0;
}

.section-label {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  text-transform: lowercase;
}

.section-aside {
  align-self: start;
}

.section-body {
  max-width: 740px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.62;
}

.deliverables .section-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  max-width: none;
  align-items: start;
}

.deliverables-copy {
  min-width: 0;
}

blockquote {
  max-width: 620px;
  margin-top: 38px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.48;
}

.commissions {
  border-top: 1px solid var(--line);
  grid-template-columns: 180px minmax(0, 1fr);
}

.commission-type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 58px;
}

.commission-intro {
  grid-column: 1 / -1;
  max-width: 960px;
  margin-bottom: 4px;
  color: #4f4f4b;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.commission-type {
  display: block;
  min-width: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.commission-type:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.commission-type:last-child {
  padding-bottom: 0;
}

.commission-type-title {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.25;
}

.commission-tab {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: lowercase;
  cursor: default;
}

.commission-tab-icon {
  display: none;
}

.commission-type-copy[hidden] {
  display: none;
}

.type-description {
  max-width: 410px;
  min-height: 58px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

.case-note {
  --case-thumb: 68px;
  --case-gap: 8px;
  max-width: none;
  margin-top: 14px;
  padding-bottom: 26px;
  border-top: 0;
  border-bottom: 0;
  display: flex;
  justify-content: flex-end;
  min-height: var(--case-thumb);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, var(--case-thumb));
  gap: var(--case-gap);
  margin: 0;
  width: calc((var(--case-thumb) * 3) + (var(--case-gap) * 2));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-image:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 38px;
  max-width: 640px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  margin-top: 40px;
}

.deliverable-groups h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
  text-transform: lowercase;
}

.deliverable-groups .outcome-list {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.material-note {
  max-width: 560px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.material-note em,
.bio-locations em {
  color: var(--text);
  font-style: italic;
  font-weight: inherit;
}

.deliverable-slider {
  display: grid;
  gap: 14px;
  margin: 0;
}

.deliverable-slider-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: zoom-in;
  background: #f3f1ec;
}

.deliverable-slider-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0;
  transition: opacity 700ms ease;
}

.deliverable-slider-frame img.active {
  opacity: 1;
}

.paper-detail-image {
  object-position: right bottom;
}

.deliverable-slider-frame:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.outcome-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 6px 0 96px;
}

.image-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
}

.deliverables,
.background,
.process,
.investment,
.note-section,
.contact {
  border-top: 1px solid var(--line);
}

.deliverables {
  grid-template-columns: 180px minmax(0, 1fr);
}

.background {
  grid-template-columns: 180px minmax(0, 1fr);
}

.steps {
  display: grid;
  gap: 30px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 640px);
  gap: 30px;
  align-items: start;
}

.steps span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.steps p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.62;
}

.background-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 282px;
  gap: 54px;
  max-width: none;
  align-items: stretch;
}

.background-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.background-copy p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.62;
}

.background-copy p + p {
  margin-top: 19px;
}

.background-copy .bio-locations {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.background-image {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: stretch;
  width: 282px;
  margin: 0;
}

.background-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.background-image-button:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.background-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1);
}

.price-list {
  margin-top: 42px;
  max-width: 640px;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.price-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.price-list dt,
.price-list dd {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.price-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.small {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact {
  padding-bottom: 116px;
}

.contact-form {
  display: grid;
  gap: 22px;
  max-width: 620px;
  margin-top: 42px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  text-transform: lowercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-bottom-color: var(--text);
}

.form-row input::placeholder {
  color: #a8a8a8;
}

.form-submit {
  justify-self: start;
  margin-top: 12px;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: default;
  opacity: 0.58;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.footer {
  width: var(--page-width);
  margin: 0 auto;
  padding: 0 0 42px;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

.footer p + p {
  margin-top: 12px;
}

.lightbox {
  width: min(960px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 44px 20px 58px;
  border: 1px solid var(--line);
  background: var(--background);
}

.lightbox::backdrop {
  background: rgba(255, 255, 255, 0.86);
}

.lightbox-frame {
  position: relative;
  cursor: ew-resize;
}

.lightbox-frame:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 148px);
  object-fit: contain;
  filter: grayscale(1);
  position: relative;
  z-index: 1;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  text-transform: lowercase;
}

.lightbox.is-commission-lightbox {
  --commission-lightbox-long-edge: min(760px, calc(100vw - 80px), calc(100vh - 220px));
  position: fixed;
  top: auto;
  right: auto;
  bottom: 20px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  overflow: hidden;
}

.lightbox.is-commission-lightbox .lightbox-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox.is-commission-lightbox img {
  width: auto;
  height: auto;
  max-width: var(--commission-lightbox-long-edge);
  max-height: var(--commission-lightbox-long-edge);
}

.lightbox.is-commission-lightbox img.lightbox-image-landscape {
  width: var(--commission-lightbox-long-edge);
}

.lightbox.is-commission-lightbox img.lightbox-image-portrait {
  height: var(--commission-lightbox-long-edge);
}

.lightbox.is-commission-lightbox .lightbox-caption {
  font-size: 17px;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 3px;
}

.lightbox-controls {
  margin-top: 16px;
  width: min(240px, 100%);
}

@media (prefers-reduced-motion: reduce) {
  .slider-frame img {
    transition: none;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 28px;
    --page-width: min(calc(100vw - (var(--page-gutter) * 2)), 760px);
  }

  body {
    padding-top: 68px;
  }

  .site-header,
  main,
  .footer {
    width: var(--page-width);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 40;
    padding: 24px 0 16px;
    background: var(--background);
    transform: translateX(-50%);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .site-header.is-hidden-mobile {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -100%);
  }

  .brand {
    font-size: 18px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-context {
    font-size: 12px;
  }

  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-top: -1px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    z-index: 10;
    display: none;
    width: max-content;
    min-width: 156px;
    padding: 14px 0 15px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--background);
    font-size: 17px;
    line-height: 1.5;
    text-align: right;
  }

  .nav.is-open {
    display: grid;
    gap: 8px;
    justify-items: end;
  }

  .mobile-section-indicator {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 35;
    display: block;
    width: 100%;
    padding: 24px 0 16px;
    background: var(--background);
    color: var(--text);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.25;
    text-transform: lowercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .mobile-section-indicator.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 32px;
    padding-bottom: 82px;
    min-height: auto;
  }

  .hero-copy {
    display: block;
    max-width: 680px;
    padding-top: 0;
  }

  .statement-block {
    max-width: 520px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 72px 0;
  }

  .deliverables .section-body {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 740px;
  }

  .background-body {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 740px;
    align-items: start;
  }

  .background-image {
    justify-self: start;
    width: 100%;
    max-width: 320px;
  }

  .deliverable-slider {
    max-width: 520px;
  }

  .commission-type-list {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .commission-type {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
  }

  .commission-type:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .commission-type:last-child {
    border-bottom: 0;
  }

  .type-description {
    min-height: 0;
  }

  .commissions .section-label {
    font-size: 19px;
  }

  .image-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 72px;
  }

}

@media (max-width: 560px) {
  :root {
    --page-gutter: 34px;
    --page-width: calc(100vw - (var(--page-gutter) * 2));
  }

  .site-header,
  main,
  .footer {
    width: var(--page-width);
  }

  .site-header {
    display: flex;
  }

  .brand-lockup {
    display: grid;
    gap: 2px;
  }

  .brand-context {
    font-size: 12px;
  }

  .nav {
    width: max-content;
    min-width: 156px;
  }

  .hero {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .hero-slider > .slider-controls {
    bottom: -22px;
  }

  .hero-copy,
  .section-body,
  .steps p,
  .outcome-list li,
  .price-list dt,
  .price-list dd {
    font-size: 16px;
  }

  .section-label,
  .commissions .section-label {
    font-size: 18px;
  }

  .deliverable-groups h3 {
    font-size: 17px;
  }

  .former-addresses {
    display: block;
    margin-top: 2px;
  }

  h1 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.14;
  }

  h2 {
    font-size: 17px;
  }

  .commission-type-list {
    gap: 0;
    border-top: 0;
  }

  .commission-intro {
    margin-bottom: 28px;
    padding-right: 6px;
    font-size: 16px;
    line-height: 1.55;
  }

  .commission-type {
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .commission-type:first-of-type {
    border-top: 1px solid var(--line);
  }

  .commission-type:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .commission-type:last-child {
    border-bottom: 0;
  }

  .commission-type-title {
    margin: 0;
    font-size: 17px;
  }

  .commission-tab {
    padding: 18px 0;
    cursor: pointer;
  }

  .commission-tab-icon {
    position: relative;
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-left: 18px;
    opacity: 0.72;
  }

  .commission-tab-icon::before,
  .commission-tab-icon::after {
    position: absolute;
    top: 7px;
    left: 1px;
    width: 14px;
    height: 1px;
    background: var(--text);
    content: "";
  }

  .commission-tab-icon::after {
    transform: rotate(90deg);
  }

  .commission-tab[aria-expanded="true"] .commission-tab-icon::after {
    transform: rotate(0deg);
  }

  .commission-type-copy {
    padding: 0 0 28px;
  }

  .type-description {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .case-note {
    margin-top: 24px;
    --case-thumb: 54px;
    --case-gap: 6px;
  }

  blockquote {
    padding-left: 18px;
    font-size: 19px;
  }

  .statement-block blockquote {
    padding-left: 0;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .quote-frame {
    min-height: 92px;
  }

  .statement-block {
    margin: 0 0 18px;
    padding: 14px 16px 13px;
  }

  .statement-block figcaption {
    font-size: 13px;
  }

  .primary-cta {
    padding: 11px 18px;
    font-size: 16px;
  }

  .section-grid {
    gap: 22px;
    padding: 46px 0;
  }

  .section-grid > .section-body,
  .section-grid > .commission-type-list,
  .steps {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .case-gallery {
    gap: 6px;
  }

  .deliverable-slider {
    margin-top: 28px;
  }

  .deliverable-slider-frame {
    aspect-ratio: 3 / 2;
  }

  .steps li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 18px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .outcome-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deliverable-groups {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .background-body {
    display: block;
  }

  .background-copy {
    display: block;
  }

  .background-copy p {
    font-size: 16px;
  }

  .background-image {
    float: right;
    width: min(47.88%, 150px);
    max-width: none;
    margin: 0 0 12px 16px;
  }

  .background-image,
  .background-image-button,
  .background-image img {
    height: auto;
  }

  .lightbox.is-commission-lightbox {
    --commission-lightbox-long-edge: min(78vw, calc(100vh - 230px));
  }

  .lightbox.is-commission-lightbox .lightbox-caption {
    font-size: 15px;
  }

  .price-list dd {
    text-align: left;
  }

  .footer {
    text-align: left;
  }
}
