.home-hero-split {
  min-height: calc(100vh - 72px);
  background: var(--night);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: stretch;
}

.home-hero-panel {
  color: var(--ink);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 126px) clamp(38px, 6vw, 96px);
}

.home-hero-panel .eyebrow {
  margin-bottom: 26px;
}

.home-hero-split h1 {
  max-width: 690px;
  margin: 0 0 30px;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
}

.home-hero-split .hero-lead {
  max-width: 590px;
  margin: 0 0 34px;
  color: #565b52;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

.home-hero-split .button-row {
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: start;
}

.home-hero-secondary {
  color: var(--night);
  border-color: var(--night);
  background: transparent;
}

.home-hero-secondary:hover,
.home-hero-secondary:focus-visible {
  color: var(--white);
  background: var(--night);
}

.home-hero-split a:focus-visible,
.home-project-grid a:focus-visible {
  outline: 3px solid #a9582f;
  outline-offset: 4px;
}

.home-project-grid .project-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}

.home-project-grid .project-card:hover .project-card-media > img {
  transform: scale(1.025);
}

@media (min-width: 981px) {
  .home-hero-visual img {
    object-position: center 58%;
    transform: scaleX(1.14) scaleY(1.04);
    transform-origin: left 58%;
  }
}

.home-hero-visual {
  min-height: 680px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #242821;
}

.home-hero-visual picture,
.home-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-visual img {
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.14);
  transform-origin: left 38%;
}

.home-hero-visual::after {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, #090b0880 100%);
  position: absolute;
  inset: 0;
}

.home-hero-visual figcaption {
  z-index: 1;
  color: #f1ede4;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.5;
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
}

@media (max-width: 980px) {
  .home-hero-split {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
  }

  .home-hero-panel {
    padding-right: 42px;
    padding-left: 42px;
  }

  .home-hero-split h1 {
    font-size: clamp(54px, 7vw, 74px);
  }
}

@media (min-width: 781px) and (max-width: 980px) {
  .home-hero-visual img {
    object-position: 45% 38%;
    transform: scale(1.05);
    transform-origin: center 38%;
  }
}

@media (max-width: 780px) {
  .site-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-nav .site-call {
    display: none;
  }

  .site-nav a {
    min-height: 44px;
  }

  .home-hero-split {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    order: 1;
    min-height: 330px;
    height: 42svh;
  }

  .home-hero-panel {
    order: 2;
    padding: 46px 24px 52px;
  }

  .home-hero-panel .eyebrow {
    margin-bottom: 20px;
  }

  .home-hero-split h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(49px, 14vw, 69px);
    line-height: .94;
  }

  .home-hero-split .hero-lead {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 17px;
  }

  .home-hero-split .button-row {
    grid-template-columns: 1fr;
  }

  .home-hero-visual figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 8px;
  }
}

@media (max-width: 420px) {
  .home-hero-panel {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.home-more-projects {
  max-width: var(--max);
  margin: 68px auto 0;
  padding-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.home-more-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.home-more-heading .eyebrow,
.home-more-heading h3 {
  margin: 0;
}

.home-more-heading h3 {
  letter-spacing: -.025em;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.home-mini-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-mini-project {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbc4b5b3;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}

.home-mini-project-media {
  aspect-ratio: 4 / 3;
  background: #343a31;
  overflow: hidden;
}

.home-mini-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}

.home-mini-project:hover .home-mini-project-media img {
  transform: scale(1.025);
}

.home-mini-project:focus-visible {
  outline: 3px solid #a9582f;
  outline-offset: 4px;
}

.home-mini-project-copy {
  min-height: 154px;
  padding: 19px;
  display: flex;
  flex-direction: column;
}

.home-mini-role,
.home-mini-location {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.5;
}

.home-mini-role {
  color: var(--olive);
}

.home-mini-location {
  color: #6b6f66;
  border-top: 1px solid #d3ccbd;
  margin-top: auto;
  padding-top: 13px;
}

.home-mini-project h3 {
  letter-spacing: -.025em;
  margin: 14px 0 18px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.02;
}

@media (max-width: 980px) {
  .home-mini-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .home-more-projects {
    margin-top: 54px;
    padding-top: 32px;
  }

  .home-more-heading {
    display: block;
  }

  .home-more-heading h3 {
    margin-top: 10px;
  }

  .home-mini-project-grid {
    grid-template-columns: 1fr;
  }

  .home-mini-project-media {
    aspect-ratio: 16 / 10;
  }

  .home-mini-project-copy {
    min-height: 142px;
  }
}
