.about-page {
  min-height: calc(100vh - 196px);
  background: #fff;
}

.about-banner-section {
  padding: 20px 0 0;
}

.about-banner-container {
  max-width: 1200px;
}

.about-banner-image {
  position: relative;
  width: 100%;
  height: 405px;
  overflow: hidden;
  background: #eef2f2;
}

.about-banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.04)
  );
  pointer-events: none;
}

.about-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-banner-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
}

.about-banner-dots span {
  width: 16px;
  height: 16px;
  border: 1px solid #adb3b7;
  border-radius: 50%;
  background: #fff;
}

.about-banner-dots .active {
  width: 6px;
  height: 6px;
  border: 0;
  background: #333;
}

.about-profile-section {
  padding: 82px 0 58px;
}

.about-profile-container {
  max-width: 960px;
  text-align: center;
}

.about-profile-container h1 {
  margin: 0 0 40px;
  color: #1f1f1f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.about-profile-copy {
  max-width: 760px;
  margin: 0 auto 48px;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.9;
}

.about-profile-copy p {
  margin: 0;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.about-contact-card {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.about-contact-card span[uk-icon] {
  margin-bottom: 16px;
  color: #656565;
}

.about-contact-card h2 {
  margin: 0 0 9px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.about-contact-card p {
  margin: 0;
  color: #6e6e6e;
  font-size: 12px;
  line-height: 1.6;
}

.about-fade-in {
  animation: aboutFadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-fade-up {
  animation: aboutFadeUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-card-in {
  animation: aboutCardIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-banner-image:not(.uk-scrollspy-inview),
.about-banner-dots:not(.uk-scrollspy-inview),
.about-profile-container h1:not(.uk-scrollspy-inview),
.about-profile-copy p:not(.uk-scrollspy-inview),
.about-contact-card:not(.uk-scrollspy-inview) {
  opacity: 0;
}

@keyframes aboutFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aboutFadeUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutCardIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .about-page {
    min-height: calc(100svh - 138px);
  }

  .about-banner-section {
    padding-top: 14px;
  }

  .about-banner-container,
  .about-profile-container {
    max-width: calc(100% - 32px);
  }

  .about-banner-image {
    height: 300px;
  }

  .about-profile-section {
    padding: 58px 0 46px;
  }

  .about-profile-copy {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .about-banner-container,
  .about-profile-container {
    max-width: calc(100% - 24px);
  }

  .about-banner-image {
    height: 210px;
  }

  .about-banner-dots {
    gap: 24px;
  }

  .about-profile-section {
    padding: 44px 0 38px;
  }

  .about-profile-container h1 {
    margin-bottom: 26px;
    font-size: 22px;
  }

  .about-profile-copy {
    margin-bottom: 34px;
    text-align: left;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-contact-card {
    min-height: 118px;
  }
}
