/* ── About intro ── */
#about-intro-full { background: var(--white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-intro-grid h2 { margin-top: 0.5rem; }
.about-intro-grid p { margin-bottom: 1rem; }

/* ── Timeline ── */
#history { background: var(--cream); }
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.timeline-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 90px;
  text-align: right;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.timeline-content {
  padding-left: 2.5rem;
  border-left: none;
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.timeline-content p  { font-size: 0.92rem; }

/* ── Team ── */
#team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--light);
}
.team-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  max-width: none;
}
.team-card-body p { font-size: 0.88rem; max-width: none; }
.team-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  max-width: none;
}

/* ── Values ── */
#about-values { background: var(--charcoal); }
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-block { position: relative; padding-left: 1.5rem; border-left: 2px solid rgba(184,156,110,0.3); }
.value-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(184,156,110,0.2);
  position: absolute;
  top: -0.5rem;
  right: 0;
  line-height: 1;
}
.value-block h3 { color: var(--white); margin-bottom: 0.75rem; }
.value-block p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: none; }

/* ── CTA ── */
#about-cta { background: var(--cream); padding: 4rem 0; }
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-cta-inner h2 { margin-bottom: 0.5rem; }
.about-cta-inner p  { margin-bottom: 0; }
.about-cta-btns { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.btn-outline-dark {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--stone);
  color: var(--stone);
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--stone); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; gap: 2rem; }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 70px; }
  .timeline-year { min-width: 70px; font-size: 0.95rem; }
}
