/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.page-header {
  padding-top: 150px;
  padding-bottom: 50px;
  background: linear-gradient(
    180deg,
    rgba(15, 19, 25, 1) 0%,
    var(--clr-bg-main) 100%
  );
  border-bottom: 1px solid var(--clr-border);
}

.page-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.bg-surface {
  background-color: var(--clr-bg-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pill-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--clr-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 2.5rem;
}

.story-content p {
  line-height: 1.8;
}

.stats-grid {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}

/* Image w/ Experience Badge */
.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.5rem;
  /* for glass card border effect */
}

.image-wrapper img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 400px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(10, 10, 13, 0.85);
  padding: 2rem;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  text-align: center;
  z-index: 2;
  transform: translate(-30px, -30px);
}

.experience-badge span.fw-bold {
  font-size: 1.2rem;
}

.experience-badge span.text-sm {
  color: var(--clr-text-muted);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: transform var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.value-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  color: var(--clr-primary);
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2);
}

.text-sm {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: 6rem 0;
}

/* Responsive */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    margin-top: 3rem;
    order: -1;
    /* Image on top on mobile */
  }
}

@media (max-width: 576px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}
