/* ============================================
   ABOUT PAGE — SPECIFIC STYLES
   ============================================ */

/* --- Our Story Section --- */
.story-section { padding: 120px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.story-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.story-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.story-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.story-badge-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.story-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}
.story-badge-text span {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 2px;
}
.story-text h2 { margin-bottom: 24px; }
.story-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.story-pullquote {
  border-left: 3px solid var(--gold);
  background: var(--cream);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 32px;
}
.story-pullquote p {
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* --- Mission / Vision / Values --- */
.mvv-section { padding: 100px 0; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mvv-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
}
.mvv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.mvv-card p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* --- Why We Exist --- */
.why-section { padding: 120px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 { margin-bottom: 20px; }
.why-left > p {
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.problem-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.problem-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.problem-item h4 {
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.problem-item p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray-500);
  line-height: 1.7;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 28px 28px 32px;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.solution-card:last-child { margin-bottom: 0; }
.solution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.solution-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}
.solution-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.solution-card p {
  font-size: 0.85rem;
  line-height: 1.75;
}

/* --- Team Section --- */
.team-section { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.team-photo {
  height: 160px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  font-weight: 400;
  opacity: 0.6;
}
.team-info {
  padding: 20px 22px;
}
.team-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.team-info p {
  font-size: 0.82rem;
  line-height: 1.65;
}

/* --- Journey / Timeline Section --- */
.journey-section { padding: 100px 0; }

/* --- Our Promise Section --- */
.promise-section { padding: 100px 0; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.promise-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.promise-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}
.promise-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}
.promise-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.promise-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* --- CTA Section --- */
.cta-section { padding: 100px 0; }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .story-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .nav-right .btn { display: none; }
}

@media (max-width: 768px) {
  .story-section,
  .why-section { padding: 80px 0; }
  .mvv-section,
  .team-section,
  .journey-section,
  .promise-section,
  .cta-section { padding: 64px 0; }
  .story-grid,
  .why-grid { gap: 36px; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .promise-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .nav-tel { display: none; }
}
