/* ============================================================
   LETAP FISHING — About Page Styles
   css/about.css
   ============================================================ */

/* ─── FOUNDING GRID ─── */
.about-founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ─── TIMELINE ─── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(197,151,62,.2);
  margin-left: 1rem;
}
.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.5rem 2rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197,151,62,.15);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  min-width: 55px;
  padding-top: 0.15rem;
}
.timeline-content h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.timeline-content p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TRANSFORMATION ─── */
.transformation-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.transformation-header .section-tag { justify-content: center; }
.transformation-header h2 { margin: 0 auto; }
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.transform-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(197,151,62,.1);
  border-radius: var(--radius);
  background: var(--navy-light);
  transition: border-color 0.3s;
}
.transform-stat:hover { border-color: rgba(197,151,62,.4); }
.transform-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.transform-label {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.transform-stat p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.values-list { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 0.5rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(197,151,62,.1);
  border-radius: var(--radius);
  background: var(--navy-mid);
  transition: border-color 0.25s;
}
.value-item:hover { border-color: rgba(197,151,62,.35); }
.value-icon {
  width: 40px; height: 40px; min-width: 40px;
  border: 1px solid rgba(197,151,62,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; }
.value-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.value-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ─── COMMUNITY ─── */
.community-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.community-stats { display: flex; flex-direction: column; gap: 2rem; }
.community-stat {
  padding: 1.5rem 2rem;
  background: rgba(8,17,31,.1);
  border-radius: var(--radius);
  border: 1px solid rgba(8,17,31,.15);
}

/* ─── LEADERSHIP TEAM ─── */
.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.team-header .section-tag { justify-content: center; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.team-card:hover {
  border-color: rgba(197,151,62,.4);
  transform: translateY(-4px);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(197,151,62,.3);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.team-avatar svg {
  width: 36px;
  height: 36px;
}

.team-info h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

.team-accent-line {
  width: 28px;
  height: 1px;
  background: rgba(197,151,62,.35);
  margin-top: 1.25rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .about-founding-grid,
  .values-grid,
  .community-section { grid-template-columns: 1fr; gap: 3.5rem; }
  .transformation-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .transformation-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

