.about-hero {
  background-position: center;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: start;
}

.about-lead {
  position: relative;
  padding-left: 28px;
}

.about-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: calc(100% - 8px);
  background: linear-gradient(var(--orange), var(--yellow));
}

.page-stamp {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-lead h2,
.commitment-head h2,
.goals-strip h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.about-copy {
  padding: 28px;
  background: var(--soft-gray);
  border-top: 6px solid var(--yellow);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.strategy-panel {
  min-height: 285px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(32, 33, 36, 0.08);
}

.strategy-panel span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.strategy-panel h3 {
  font-size: 1.4rem;
}

.belief-section {
  position: relative;
  overflow: hidden;
  background: var(--soft-gray);
}

.belief-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/23.jpeg") center / cover;
  filter: grayscale(1);
  opacity: 0.07;
}

.belief-section .section-pad {
  position: relative;
}

.belief-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.belief-photo {
  position: relative;
}

.belief-photo::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 44%;
  height: 38%;
  background: var(--yellow);
  z-index: 0;
}

.belief-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.belief-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.belief-points span {
  padding: 14px 16px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  font-weight: 800;
}

.commitment-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.commitments {
  position: relative;
  overflow: hidden;
}

.commitments::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(520px, 48vw);
  background: url("../gallery/32.jpeg") center / cover;
  filter: grayscale(1);
  opacity: 0.06;
  pointer-events: none;
}

.commitments > * {
  position: relative;
}

.commitment-head span {
  padding: 10px 13px;
  background: var(--yellow);
  border-left: 5px solid var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.commitment-card {
  padding: 24px;
  background: var(--soft-gray);
  border-bottom: 5px solid var(--yellow);
}

.commitment-card h3 {
  font-size: 1.2rem;
}

.goals-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 940px) {
  .about-intro,
  .belief-layout,
  .goals-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .strategy-grid,
  .commitment-grid,
  .belief-points,
  .commitment-head {
    grid-template-columns: 1fr;
  }
}
