
/* Sections */
section {
  padding: clamp(56px, 6vw, 92px) 0;
}

.section-title {
  display: flex; 
   align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--navy);

}


.kicker {
  color: var(--coral);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
}

.lead {
  /* margin: 10px 0 0; */
  color: var(--muted);
  max-width: 100%;
}

/* Reveal / Scroll animations */
.reveal {
  /*opacity: 0;*/
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal {
  transition-delay: var(--d, 0ms);
}
