.about-page {
  padding-top: 96px;
}

.about-hero {
  padding-top: 24px;
}

.about-hero-panel {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  color: #fff;
  padding: clamp(26px, 4vw, 56px);
  background:
    linear-gradient(130deg, rgba(7, 22, 18, 0.64), rgba(7, 22, 18, 0.82)),
    url("./assets/images/about/about-hero.png") center/cover no-repeat;
}

.about-hero-panel h1 {
  max-width: 18ch;
  margin-bottom: 10px;
}

.about-hero-panel .subhead {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero-panel p {
  max-width: 64ch;
}

.story-grid,
.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.story-copy p,
.sustain-copy p {
  color: var(--muted);
}

.media-card {
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(25, 39, 33, 0.06);
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 255, 255, 0.25), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(185, 137, 73, 0.35), transparent 30%),
    linear-gradient(140deg, rgba(36, 90, 71, 0.95), rgba(13, 35, 29, 0.98));
}

.story-grid .story-media {
  min-height: 330px;
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  justify-self: stretch;
  background-image: url("./assets/images/about/location-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.sustain-media {
  background:
    linear-gradient(140deg, rgba(14, 34, 28, 0.35), rgba(14, 34, 28, 0.35)),
    url("./assets/images/about/about-sustain-manufacturing.png") center/cover no-repeat;
}

.scale-split,
.strength-grid {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.scale-split {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.scale-media {
  min-height: 330px;
  aspect-ratio: auto;
  background-image: url("./assets/images/about/company-scale-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.strength-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scale-copy {
  padding: 4px 0;
}

.scale-copy h2 {
  margin-top: 10px;
  margin-bottom: 14px;
}

.scale-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.scale-description + .scale-description {
  margin-top: 12px;
}

.hl-num {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--brand);
}

.vision-section .section-head {
  text-align: center;
}

.vision-section .section-head p {
  margin-inline: auto;
  color: var(--muted);
  max-width: 64ch;
}

.quote-wrap {
  background:
    linear-gradient(120deg, rgba(7, 22, 18, 0.8), rgba(7, 22, 18, 0.52)),
    url("./assets/images/about/boss-bk.png") 32% 36% / 125% auto no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  padding-bottom: clamp(14px, 2.2vw, 22px);
  min-height: clamp(170px, 24vw, 250px);
  display: flex;
  align-items: flex-end;
}

.quote-wrap blockquote {
  margin: 0;
}

.quote-wrap p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.quote-wrap footer {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.nav a.active {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 980px) {
  .story-grid,
  .sustain-grid,
  .scale-split,
  .strength-grid {
    grid-template-columns: 1fr;
  }

}
