.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3d6e 100%); padding: 5rem 2rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; text-align: center; }

.hero h1 { font-family: 'DM Serif Display', serif; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 .name-line { display: block; font-size: 3.4rem; }
.hero h1 .subtitle-line { display: block; font-size: 2.6rem; opacity: .85; }
.hero p { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.25rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.home-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.home-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--border)); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot { position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px; background: var(--blue); border-radius: 50%; border: 3px solid var(--off-white); }
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .35rem; }
.timeline-item p { font-size: .95rem; color: var(--text); line-height: 1.65; }

@media (max-width: 900px) {
  .hero h1 .name-line { font-size: 2.4rem; }
  .hero h1 .subtitle-line { font-size: 1.9rem; }
  .home-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero h1 .name-line { font-size: 2rem; }
  .hero h1 .subtitle-line { font-size: 1.6rem; }
  .home-right { grid-template-columns: 1fr; }
  .card { padding: 1.25rem; }
}