/* ===== ABOUT PAGE — extends style.css design tokens ===== */

/* ===== PAGE BANNER ===== */
.page-banner{
  background-size:cover;
  background-position:center;
  min-height:340px;
  display:flex;
  align-items:center;
}
.page-banner-inner{
  max-width:1200px;
  margin:0 auto;
  padding:70px 24px 50px;
  width:100%;
}
.page-banner .eyebrow{ justify-content:flex-start; }
.page-banner h1{
  font-size:2.6rem;
  color:var(--white);
  margin-bottom:18px;
}
.page-banner h1 em{ color:var(--gold-light); font-style:italic; }
.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  color:#e9dcc9;
  font-size:.9rem;
}
.breadcrumb a{ color:var(--gold-light); font-weight:500; }
.breadcrumb i{ font-size:.65rem; color:#e9dcc9; }
.breadcrumb span{ color:#f1e6d3; }

/* ===== MISSION & VISION ===== */
.mission-vision{ padding:96px 0; background:var(--cream); }
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.mv-card{
  background:var(--white);
  border-radius:14px;
  padding:44px;
  box-shadow:var(--shadow);
  border-bottom:4px solid var(--gold);
  transition:.25s;
}
.mv-card:hover{ transform:translateY(-4px); }
.mv-icon{
  width:60px; height:60px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:20px;
}
.mv-card h3{ font-size:1.3rem; color:var(--maroon-dark); margin-bottom:14px; }
.mv-card p{ color:var(--text-muted); }

/* ===== CORE VALUES ===== */
.values{ padding:96px 0; }
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.value-card{
  text-align:center;
  padding:36px 24px;
  border:1px solid var(--border);
  border-radius:14px;
  transition:.3s;
  opacity:0;
  transform:translateY(24px);
}
.value-card.in-view{ opacity:1; transform:translateY(0); }
.value-card:hover{ box-shadow:var(--shadow); border-color:transparent; }
.value-card i{ font-size:1.7rem; color:var(--maroon); margin-bottom:16px; }
.value-card h4{ font-size:1.05rem; color:var(--maroon-dark); margin-bottom:10px; }
.value-card p{ color:var(--text-muted); font-size:.9rem; }

/* ===== JOURNEY / TIMELINE ===== */
.journey{ padding:96px 0; background:var(--cream); }
.timeline{
  position:relative;
  max-width:820px;
  margin:50px auto 0;
  padding-left:36px;
  border-left:2px solid var(--border);
}
.timeline-item{
  position:relative;
  padding-bottom:44px;
  opacity:0;
  transform:translateX(-16px);
  transition:.4s;
}
.timeline-item.in-view{ opacity:1; transform:translateX(0); }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute;
  left:-44px;
  top:2px;
  width:18px; height:18px;
  border-radius:50%;
  background:var(--gold);
  border:4px solid var(--maroon);
}
.timeline-year{
  display:inline-block;
  font-family:var(--font-head);
  font-weight:700;
  color:var(--maroon);
  font-size:1.1rem;
  margin-bottom:6px;
}
.timeline-content h4{ font-size:1.1rem; color:var(--maroon-dark); margin-bottom:6px; }
.timeline-content p{ color:var(--text-muted); font-size:.92rem; max-width:520px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .mv-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 860px){
  .page-banner h1{ font-size:2rem; }
}

@media (max-width: 600px){
  .values-grid{ grid-template-columns:1fr; }
  .timeline{ padding-left:28px; }
  .timeline-dot{ left:-36px; }
}