/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #193D8F 55%, #0d3a6e 100%);
  color: white;
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(45,184,75,0.10);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--green);
  max-width: 50px;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h2 .accent { color: var(--green); }
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  max-width: 430px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* Hero stats */
.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: left; }
.hero-stats .stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat .lbl { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Hero timeline (right side) */
.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: white;
}
.timeline-heading span { color: var(--green); }
.tl-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.tl-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.tl-photo img { width: 100%; height: 100%; object-fit: cover; }
.tl-photo .photo-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(11,35,84,0.7);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.tl-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}
.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.tl-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.tl-line { flex: 1; height: 3px; background: var(--green); opacity: 0.4; }
.tl-years { display: flex; gap: 0; }
.tl-item { flex: 1; text-align: center; padding: 0 4px; }
.tl-item .tl-title { font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.tl-item .tl-desc { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ── HERO RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-timeline { display: none; }
  .hero h2 { font-size: 36px; }
  .hero { padding: 50px 20px 48px; }
}
@media (max-width: 600px) {
  .hero h2 { font-size: 30px; }
  .hero p { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; text-align: center; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat .num { font-size: 22px; }
}
