/* ============================================
   About Page — Polished Layout
   ============================================ */

/* ---- Hero ---- */
.about-hero {
  padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-16);
  background: var(--navy);
  text-align: center;
  position: relative;
}
.about-hero::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-6) auto 0;
  border-radius: 2px;
}
.about-hero__title {
  color: var(--white);
  margin-bottom: var(--space-4);
}
.about-hero__subtitle {
  color: var(--gray-300);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* ---- Our Story ---- */
@media (min-width: 768px) {
  #our-story .diff-item {
    grid-template-columns: 1fr 1fr;
  }
}
#our-story .story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: auto;
  box-shadow: var(--shadow-xl);
}
#our-story .story__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---- Mission & Values ---- */
.values-hero {
  max-width: 100%;
  height: 300px;
  margin: 0 auto var(--space-12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.values-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200, #e5e7eb);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}
.value-card__icon svg { width: 28px; height: 28px; }

.value-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
  color: var(--navy);
}
.value-card__text {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}

/* ---- What Sets Us Apart (Differentiators) ---- */
.diff-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-16);
}
.diff-item:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .diff-item { grid-template-columns: 1fr 1fr; }
}

.diff-item:nth-child(even) .diff-item__image { order: 2; }
.diff-item:nth-child(even) .diff-item__content { order: 1; }
@media (max-width: 767px) {
  .diff-item:nth-child(even) .diff-item__image { order: 1; }
  .diff-item:nth-child(even) .diff-item__content { order: 2; }
}

.diff-item__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
}
.diff-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.diff-item__image:hover img {
  transform: scale(1.03);
}

.diff-item__number {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.diff-item__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-4);
  color: var(--navy);
  position: relative;
  padding-bottom: var(--space-3);
}
.diff-item__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.diff-item__text {
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-md);
}

/* ---- Credentials Bar ---- */
.credentials-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-12) 0;
}

.credential {
  text-align: center;
  flex: 0 0 auto;
}

.credential__value {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--gold);
}

.credential__label {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  margin-top: var(--space-2);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
