.timeline-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(247, 245, 239, .98) 0%, rgba(247, 245, 239, .92) 55%, rgba(170, 184, 170, .42) 100%);
}

.timeline-hero h1 {
  max-width: 860px;
  font-size: clamp(44px, 6.4vw, 84px);
}

.timeline-hero-results {
  grid-template-columns: 1fr;
  align-self: center;
  margin-top: 0;
}

.timeline-hero-results.hero-ba-grid {
  gap: 18px;
}

.timeline-hero-results.hero-ba-grid .ba-polaroid {
  width: 100%;
  max-width: 560px;
  padding: 10px 10px 42px;
}

.timeline-hero-results.hero-ba-grid .ba-polaroid:nth-child(1),
.timeline-hero-results.hero-ba-grid .ba-polaroid:nth-child(2),
.timeline-hero-results.hero-ba-grid .ba-polaroid:nth-child(3) {
  margin-top: 0;
}

.timeline-hero-results.hero-ba-grid .ba-photo {
  aspect-ratio: 16 / 10.5;
}

.timeline-hero-results.hero-ba-grid .ba-polaroid figcaption {
  bottom: 11px;
  font-size: 14px;
}

.timeline-stat-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.timeline-stat-panel div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 18, 20, .1);
}

.timeline-stat-panel dt {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
}

.timeline-stat-panel dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.timeline-section {
  background: var(--white);
}

.timeline-track {
  display: grid;
  gap: 16px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.timeline-step > span {
  display: grid;
  width: 86px;
  height: 86px;
  align-content: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: .9;
  text-align: center;
}

.timeline-step h3 {
  margin-bottom: 10px;
}

.timeline-step strong {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-step p:last-child {
  margin-bottom: 0;
}

.timeline-care {
  background: var(--paper);
}

.care-grid,
.timeline-surprise-grid,
.timeline-next-grid {
  display: grid;
  gap: 16px;
}

.care-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-surprise-grid,
.timeline-next-grid {
  grid-template-columns: repeat(2, 1fr);
}

.care-grid article,
.timeline-surprise-grid article,
.timeline-next-grid a {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.care-grid span,
.timeline-surprise-grid span,
.timeline-next-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.care-grid p,
.timeline-surprise-grid p,
.timeline-next-grid a {
  color: var(--muted);
}

.timeline-next-grid a {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.6;
}

.timeline-next-grid span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1100px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .timeline-hero {
    grid-template-columns: 1fr;
  }

  .timeline-stat-panel {
    max-width: 560px;
  }

  .timeline-hero-results {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .timeline-hero h1 {
    font-size: 42px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-stat-panel,
  .care-grid,
  .timeline-surprise-grid,
  .timeline-next-grid {
    grid-template-columns: 1fr;
  }
}
