.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(247, 245, 239, .98) 0%, rgba(247, 245, 239, .92) 55%, rgba(170, 184, 170, .42) 100%);
}

.about-hero > *,
.about-split > *,
.about-story-band > * {
  min-width: 0;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.4vw, 84px);
}

.about-hero figure,
.about-photo-panel figure {
  margin: 0;
  border: 10px solid var(--white);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 18, 20, .14);
}

.about-hero figure {
  aspect-ratio: 4 / 5;
}

.about-hero img,
.about-photo-panel img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 430px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.about-split p:last-child {
  margin-bottom: 0;
}

.about-photo-panel {
  display: grid;
  gap: 18px;
}

.about-photo-panel figure {
  aspect-ratio: 4 / 5;
}

.about-note {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.about-note p {
  margin: 0;
  color: var(--muted);
}

.about-values {
  background: var(--white);
}

.about-value-grid,
.about-proof-grid {
  display: grid;
  gap: 16px;
}

.about-value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-value-grid article,
.about-proof-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-value-grid span,
.about-proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-value-grid p,
.about-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-proof-grid strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.about-story-band {
  grid-template-columns: .72fr 1fr;
}

.about-quote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-quote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.about-quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .about-value-grid,
  .about-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .about-hero,
  .about-split,
  .about-story-band {
    grid-template-columns: 1fr;
  }

  .about-hero figure,
  .about-photo-panel {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .about-hero h1 {
    font-size: 42px;
  }

  .about-value-grid,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
}
