.page-hero {
  position: relative;
  min-height: 300px;
  padding: 110px 0 70px;
  background: url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?w=1400&q=80")
    center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 20, 40, 0.72),
    rgba(15, 20, 40, 0.88)
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.bc-sep {
  color: var(--orange);
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

.about-story {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.about-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.about-point {
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--light-gray);
}

.about-point strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
}

.about-point span {
  color: var(--gray);
}

.about-stats {
  padding: 0 0 90px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-box {
  background: var(--dark2);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
}

.about-cta {
  padding-bottom: 90px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 10px;
  background: var(--light-gray);
}

.cta-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.cta-panel p {
  color: var(--gray);
  max-width: 640px;
}

@media (max-width: 900px) {
  .about-grid,
  .stats-row,
  .cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-photo img {
    height: 360px;
  }
}
