/* About Page */
.about-hero { position: relative; min-height: 75vh; display: flex; align-items: flex-end; overflow: hidden; }
.about-hero-img { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; object-position: center 30%; will-change: transform; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.2) 70%); }
.about-hero-content { position: relative; z-index: 1; padding: 80px 7%; width: 100%; }

.milestones { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,0.07); }
.ms-item { padding: 48px 32px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.ms-item:last-child { border-right: none; }
.ms-num { font-family: 'Epilogue', sans-serif; font-weight: 900; font-size: 52px; letter-spacing: -0.04em; color: var(--orange); line-height: 1; }
.ms-label { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 8px; }

.story-photos { display: flex; flex-direction: column; gap: 4px; }
.story-photo-main { width: 100%; height: 340px; object-fit: cover; display: block; }
.story-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.story-photo-sm { width: 100%; height: 180px; object-fit: cover; display: block; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--rule); }
.team-card { background: var(--white); overflow: hidden; transition: transform 0.2s; }
.team-card:hover { transform: translateY(-4px); }
.team-photo-wrap { height: 280px; overflow: hidden; }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s; }
.team-card:hover .team-photo { transform: scale(1.05); }
.team-body { padding: 28px; }
.team-name { font-family: 'Epilogue', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--orange); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 16px; }
.team-certs { display: flex; gap: 6px; flex-wrap: wrap; }
.cert-chip { background: var(--surface); border: 1px solid var(--rule); color: var(--ink-soft); font-size: 11px; font-weight: 600; padding: 4px 10px; letter-spacing: 0.04em; }

.timeline { position: relative; max-width: 820px; }
.timeline::before { content:''; position: absolute; left: 120px; top: 0; bottom: 0; width: 1px; background: var(--rule); }
.tl-item { display: grid; grid-template-columns: 120px 40px 1fr; gap: 24px; margin-bottom: 52px; align-items: start; }
.tl-year-side { text-align: right; padding-top: 4px; }
.tl-year { font-family: 'Epilogue', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -0.03em; color: var(--orange); line-height: 1; }
.tl-dot-wrap { display: flex; justify-content: center; position: relative; z-index: 1; }
.tl-dot { width: 40px; height: 40px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.tl-content { padding-top: 4px; }
.tl-title { font-family: 'Epilogue', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.tl-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

.cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.04); }
.cert-card { background: var(--dark2); padding: 28px 24px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(255,255,255,0.05); }
.cert-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.cert-name { font-family: 'Epilogue', sans-serif; font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; }
.cert-detail { font-size: 12px; color: rgba(255,255,255,0.4); }

@media (max-width: 900px) {
  .milestones { grid-template-columns: 1fr 1fr; }
  .ms-item:nth-child(2) { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 80px; }
  .tl-item { grid-template-columns: 80px 36px 1fr; gap: 16px; }
  .tl-year { font-size: 18px; }
}
@media (max-width: 600px) {
  .cert-grid { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .tl-year-side { text-align: left; }
  .tl-dot-wrap { justify-content: flex-start; }
}
