:root {
  --page-max: 72rem;
}

html {
  scroll-padding-top: 5rem;
}

.about-caption {
  animation: aboutCaptionIn 900ms ease-out both;
}

.why-pill {
  backdrop-filter: blur(10px);
}

.contact-grid {
  display: grid;
  gap: 0.9rem;
}

.hero-actions a,
.project-actions a,
.contact-links a {
  width: 100%;
}

.project-notes {
  display: grid;
  gap: 0.85rem;
}

.project-note {
  border-left: 2px solid rgba(46, 125, 50, 0.3);
  padding-left: 0.9rem;
}

.project-note-label {
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 0.16em;
}

@media (min-width: 42rem) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions a,
  .project-actions a,
  .contact-links a {
    width: auto;
  }
}

@keyframes aboutCaptionIn {
  0% {
    transform: translate3d(0, 10px, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-caption {
    animation: none !important;
  }
}
