.about-page {
  background: #f4f6f8;
}

.about-header {
  background: rgba(244, 246, 248, 0.92);
}

.about-intro {
  padding: 1.5rem 0 3rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--brass);
}

.intro-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.intro-text h1 {
  margin-bottom: 1rem;
}

.intro-text p {
  color: var(--steel);
  font-size: 1.03rem;
}

.intro-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.stats-band {
  background: var(--navy-dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
}

.stats-grid strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.experience-section {
  padding: 4rem 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.experience-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--brass);
  border-radius: 0 14px 14px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.experience-list span {
  font-weight: 600;
}

.experience-list strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  color: var(--brass);
}

.why-section {
  padding: 4rem 0;
  background: var(--white);
}

.why-head {
  margin-bottom: 2rem;
}

.why-stack {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-stack article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.why-stack article:last-child {
  border-bottom: 0;
}

.why-stack h3 {
  margin: 0;
}

.why-stack p {
  margin: 0;
  color: var(--steel);
}

.video-section {
  padding: 4rem 0;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow.light {
  color: var(--brass-light);
}

.video-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.06);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.85;
}

.video-frame p {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(8, 24, 43, 0.78);
  font-size: 0.88rem;
}

.about-footer {
  padding: 1.2rem 0 2rem;
}

.footer-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--brass-light);
}

@media (max-width: 980px) {
  .intro-shell,
  .experience-layout,
  .video-layout,
  .why-stack article {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
