/* ─── Page Hero Override ──────────────────────────────────── */
.page-hero h1 { font-size: clamp(3rem, 9vw, 5.5rem); }

/* ─── Story ─────────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-content p { color: var(--gray); font-weight: 300; line-height: 1.8; }

/* ─── Timeline ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), rgba(242,196,61,.1));
}
.tl-item {
  position: relative;
  padding-bottom: 36px;
}
.tl-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-lt);
  border: 2px solid var(--yellow);
  transition: transform var(--transition);
}
.tl-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow-dk);
  line-height: 1;
  margin-bottom: 4px;
}
.tl-content h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.tl-content p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ─── Values ─────────────────────────────────────────────────── */
.values-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(242,196,61,.025) 0, rgba(242,196,61,.025) 2px,
    transparent 2px, transparent 22px
  );
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.value-card {
  padding: 36px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  border-top: 4px solid var(--yellow);
  transition: background var(--transition), transform var(--transition);
}
.value-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: rgba(242,196,61,.25);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--yellow); margin-bottom: 12px; }
.value-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ─── Team ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card { padding: 0; overflow: hidden; }
.team-avatar {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}
.team-info { padding: 24px; }
.team-info h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.team-role {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 12px;
}
.team-info p:last-child { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ─── Location ────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.map-frame {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--yellow);
  position: relative;
}
.map-pin-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  pointer-events: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-frame { height: 300px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
