/* ========================================
   LEGACY PAGE STYLES
   ======================================== */

.page-hero-legacy {
  padding: var(--spacing-xxl) 0;
  min-height: 75vh;
  background: linear-gradient(180deg, #2E221B 0%, #160e09 40%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-legacy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.page-hero-legacy h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--spacing-md) auto 0;
}

.page-hero-legacy .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.8);
  max-width: 900px;
  margin: var(--spacing-md) auto 0 auto;
}

/* Section Labels */

/* Full Horizontal Timeline */
.legacy-timeline-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}


.timeline-full {
  position: relative;
  padding: 4rem 0;
  max-width: 100%;
  overflow-x: auto;
}

.timeline-horizontal {
  display: flex;
  position: relative;
  min-width: max-content;
  padding: 0 2rem;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: rgba(194, 168, 120, 0.2);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-milestone {
  position: relative;
  min-width: 300px;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.milestone-marker {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 4px solid var(--bg-soft);
  border-radius: 50%;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 0 0 4px rgba(194, 168, 120, 0.2);
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.milestone-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.milestone-description {
  font-size: 0.95rem;
  color: rgba(248, 246, 240, 0.7);
  line-height: 1.6;
}

/* Milestone Highlights */
.milestone-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.highlight-card {
  background: var(--bg);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
}

.highlight-year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.highlight-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--ivory);
}

.highlight-card p {
  margin-bottom: var(--spacing-md);
}

.highlight-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgba(248, 246, 240, 0.7);
}

.highlight-card li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Continue the Legacy CTA */
.final-cta {
  text-align: center;
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #3d2f24 0%, #2a1f18 50%, #3d2f24 100%);
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}

.final-cta h2 {
  margin-bottom: var(--spacing-md);
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.85);
}

.final-cta .hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .final-cta .hero-cta {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Legacy Quote */
.legacy-quote-section {
  background: linear-gradient(135deg, rgba(194, 168, 120, 0.05) 0%, transparent 100%);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}


.legacy-quote {
  max-width: 900px;
  margin: 0 auto;
}

.legacy-quote blockquote {
  border: none;
  padding: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.quote-author {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gold);
  font-style: normal;
}

/* Timeline Image Gallery */
.timeline-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.2);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 14, 16, 0.9), transparent);
  padding: 1.5rem 1rem 1rem;
  color: var(--ivory);
  font-size: 0.9rem;
}

/* Continue the Legacy CTA */
.final-cta {
  text-align: center;
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #3d2f24 0%, #2a1f18 50%, #3d2f24 100%);
  border-top: 1px solid rgba(194, 168, 120, 0.2);
}

.final-cta h2 {
  margin-bottom: var(--spacing-md);
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.85);
}

.final-cta .hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .final-cta .hero-cta {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .milestone-highlights {
    grid-template-columns: 1fr;
  }
  
  .timeline-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-legacy {
    padding: var(--spacing-lg) 0;
    min-height: 60vh;
  }
  
  .timeline-milestone {
    min-width: 250px;
  }
  
  .timeline-gallery {
    grid-template-columns: 1fr;
  }
  
  .milestone-year {
    font-size: 2rem;
  }
}
