Yes. Delete both patched sections and use this clean replacement instead.

```css
/* HERO */

.hero {
  min-height: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0 64px;
}

.hero-copy {
  min-height: auto;
  padding: 38px;
}

h1 {
  margin: 0 0 34px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  max-width: 620px;
}

.subline {
  margin: 12px 0 24px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.4;
}

.button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 11px 17px;
  font-size: 13px;
}

/* HERO PHOTO */

.hero-photo {
  min-height: auto;
  height: auto;
  max-height: 520px;
  background: transparent;
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ABOUT */

.about {
  padding: 64px 0 84px;
}

.section-label {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.about-copy {
  max-width: 860px;
  padding: clamp(28px, 4vw, 48px);
}

.about-copy p,
.systems-list li {
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.about-copy p {
  margin: 0 0 16px;
}

.systems-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.systems-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 1.4rem;
}

.systems-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #888;
}

/* CONTACT */

.contact {
  padding: clamp(32px, 5vw, 56px);
}

.contact h2 {
  margin: 0 auto 26px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.email {
  font-size: 12px;
}

footer {
  font-size: 12px;
}

/* MOBILE */

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 30px;
  }

  .hero-photo {
    max-height: 420px;
  }

  .hero-photo img {
    max-height: 420px;
  }

  .button {
    width: 100%;
  }
}
```
