.contact-page {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 150px 0 92px;
  color: var(--color-white);
  background: #004600;
}

.contact-page-inner {
  width: min(100% - 72px, 1180px);
  text-align: center;
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(-42px);
}

.contact-page.is-ready .contact-heading {
  animation: contactHeadingIn 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-label {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-heading h1 {
  max-width: none;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: clamp(1.72rem, 2.55vw, 2.45rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.contact-heading p {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(0.86rem, 0.96vw, 0.96rem);
  font-weight: 550;
  line-height: 1.65;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.contact-card {
  min-height: 218px;
  padding: 42px 34px;
  border-radius: 4px;
  background: var(--color-white);
  opacity: 0;
  transform: translateY(46px);
}

.contact-page.is-ready .contact-card {
  animation: contactCardIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-page.is-ready .contact-card:nth-child(1) {
  animation-delay: 220ms;
}

.contact-page.is-ready .contact-card:nth-child(2) {
  animation-delay: 360ms;
}

.contact-page.is-ready .contact-card:nth-child(3) {
  animation-delay: 500ms;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-card-heading img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-card h2 {
  margin-bottom: 0;
  color: #34445a;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.contact-value {
  margin-bottom: 0;
  color: var(--color-black);
  font-size: clamp(0.96rem, 1.12vw, 1.14rem);
  font-weight: 650;
  line-height: 1.4;
}

.contact-address {
  font-size: clamp(0.86rem, 0.98vw, 0.98rem);
  line-height: 1.55;
}

@keyframes contactHeadingIn {
  0% {
    opacity: 0;
    transform: translateY(-42px);
  }

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

@keyframes contactCardIn {
  0% {
    opacity: 0;
    transform: translateY(46px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .contact-heading,
  .contact-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
