
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(139,26,26,0.85) 0%, rgba(28,16,8,0.95) 55%, rgba(45,90,39,0.7) 100%);
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201,147,58,0.03) 2px, rgba(201,147,58,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201,147,58,0.02) 2px, rgba(201,147,58,0.02) 4px);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(28,16,8,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.hero-line { display: block; opacity: 0; animation: fadeUp 0.8s forwards; }
.hero-line:nth-child(1) { animation-delay: 0.4s; }
.hero-line:nth-child(3) { animation-delay: 0.8s; }
.hero-accent {
  display: block;
  color: var(--gold);
  font-style: italic;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,237,214,0.72);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-cta {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.btn-primary {
  background: var(--gold); color: var(--brown);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,147,58,0.35); }
.btn-ghost {
  background: transparent; color: var(--cream);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(245,237,214,0.35);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,237,214,0.08); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,237,214,0.35); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,147,58,0.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.hero-stamp {
  position: absolute; right: 2rem; bottom: 2.5rem;
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.2em; color: rgba(201,147,58,0.35);
  writing-mode: vertical-rl; z-index: 2;
}

.timeline-section {
  background: var(--white);
  position: relative;
}
.timeline-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}
.timeline {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-pale), var(--gold), var(--red), var(--gold-pale));
  transform: translateX(-50%);
}
.t-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  margin-bottom: 3.5rem;
  align-items: start;
}
.t-item .t-card { grid-column: 1; }
.t-item.right .t-card { grid-column: 3; }
.t-item.right .t-spacer { grid-column: 1; }
.t-spacer { grid-column: 3; }
.t-item.right .t-marker { grid-column: 2; }
.t-marker {
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: 1.4rem;
  position: relative;
  z-index: 2;
}
.marker-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
}
.marker-dot.final {
  width: 22px; height: 22px;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red), 0 0 0 6px rgba(139,26,26,0.2);
}
.t-item.center { grid-template-columns: 1fr; justify-items: center; }
.t-item.center .t-card { grid-column: 1; max-width: 520px; width: 100%; }
.t-item.center .t-marker { position: relative; margin-bottom: 1rem; justify-content: center; display: flex; grid-column: unset; padding-top: 0; }

.t-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,147,58,0.18);
  transition: box-shadow var(--transition), transform var(--transition);
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); padding: 1rem 1.25rem 0.4rem;
}
.t-img {
  height: 160px; overflow: hidden; position: relative;
}
.t-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.t-card:hover .t-img img { transform: scale(1.05); }
.t-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,16,8,0.5) 0%, transparent 60%); }
.t-body { padding: 1.1rem 1.25rem 1.4rem; }
.t-place { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--brown); margin-bottom: 0.15rem; }
.t-event { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.65rem; }
.t-desc { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.65; margin-bottom: 0.9rem; }
.t-link { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; transition: color var(--transition); }
.t-link:hover { color: var(--red); }

.sites-cta {
  text-align: center;
  padding: 2rem 0 1rem;
}
.sites-cta p { color: var(--brown-mid); font-size: 1rem; margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .timeline::before { left: 18px; }
  .t-item { display: block; padding-left: 44px; position: relative; margin-bottom: 2.5rem; }
  .t-marker { position: absolute; left: 10px; top: 0; padding-top: 0; }
  .t-spacer { display: none; }
  .t-item.center { padding-left: 44px; }
  .t-item.center .t-marker { left: 10px; top: 0; }
  .hero-stamp { display: none; }
}