/* About Page Styles */

.about-main {
  padding: 60px 0 80px 0;
  min-height: 100vh;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-title {
  font-size: 48px;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.about-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #000;
}

.about-text p {
  margin: 0 0 8px 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.contacts-section {
  margin-top: 40px;
}

.contacts-title {
  font-size: 24px;
  letter-spacing: 0.02em;
  margin: 0 0 24px 0;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.site-credit {
  margin-top: 40px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  color: #666;
}

.site-credit p {
  margin: 0;
}

.site-credit a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-credit a:hover {
  color: #000;
  text-decoration: underline;
}

.about-video {
  position: sticky;
  top: 120px;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.about-video video {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-video {
    position: relative;
    top: 0;
    order: -1;
  }
}

@media (max-width: 520px) {
  .about-main {
    padding: 40px 0 60px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }

  .contacts-title {
    font-size: 20px;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icon svg {
    width: 32px;
    height: 32px;
  }
}
