/* ============================================================
   TRES FORCAS — About Page Styles
   ============================================================ */

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--border), var(--border), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; margin-bottom: 3.5rem; align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content {
  padding: 0 2.5rem;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.timeline-item:nth-child(odd) .timeline-content:first-child { transform: translateX(-30px); text-align: right; }
.timeline-item:nth-child(odd) .timeline-content:last-child { transform: translateX(30px); }
.timeline-item:nth-child(even) .timeline-content:first-child { transform: translateX(-30px); text-align: right; }
.timeline-item:nth-child(even) .timeline-content:last-child { transform: translateX(30px); }
.timeline-item.in-view .timeline-content { opacity: 1; transform: none; }

.timeline-dot-col { display: flex; flex-direction: column; align-items: center; padding-top: 0.3rem; }
.timeline-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--navy);
  position: relative; flex-shrink: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.timeline-item.in-view .timeline-dot { background: var(--gold); box-shadow: 0 0 18px rgba(201,168,76,0.45); }
.timeline-year {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--ivory); margin-bottom: 0.5rem; }
.timeline-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  text-align: center;
}
.value-card:hover { border-color: var(--border-h); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.value-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--ivory); margin-bottom: 0.6rem; }
.value-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.team-portrait {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.team-portrait-1 { background: linear-gradient(160deg, #1a2535 0%, #0d1825 100%); }
.team-portrait-2 { background: linear-gradient(160deg, #1a2a1a 0%, #0d1a0d 100%); }
.team-portrait-3 { background: linear-gradient(160deg, #251a10 0%, #180f05 100%); }
.team-info { padding: 1.5rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ivory); margin-bottom: 0.3rem; }
.team-role { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* Press quotes */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.press-card {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  font-style: italic; color: var(--muted);
}
.press-source { font-style: normal; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }

@media (max-width: 900px) {
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item .timeline-content:first-child { display: none; }
  .timeline-content { padding: 0 0 0 1.5rem; }
  .timeline-item:nth-child(odd) .timeline-content:last-child,
  .timeline-item:nth-child(even) .timeline-content:last-child { transform: translateX(20px); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
