/* ============================================
   VTN AGENCY — About Page Styles
   Hero, Story, Values, Team
   ============================================ */

/* ==================== ABOUT HERO ==================== */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--gradient-hero);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(100px);
  pointer-events: none;
}

.about-hero__content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.about-hero__title {
  margin-bottom: 32px;
}

.about-hero__manifesto {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ==================== STORY SECTION ==================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-text {
  max-width: 540px;
}

.story-text .section-header__label {
  margin-bottom: 12px;
}

.story-text h2 {
  margin-bottom: 24px;
}

.story-text p {
  margin-bottom: 16px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* --- Abstract Visual --- */
.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual__img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

/* ==================== VALUES ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  padding: 40px;
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.value-card__title {
  margin-bottom: 12px;
}

.value-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== TEAM ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-hero);
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.team-card__avatar--2 {
  background: linear-gradient(135deg, #2B86C5, #784BA0);
}

.team-card__avatar--3 {
  background: linear-gradient(135deg, #FF3CAC, #2B86C5);
}

.team-card__avatar--4 {
  background: linear-gradient(135deg, #784BA0, #FF3CAC);
}

.team-card__name {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.team-card__role {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual {
    order: -1;
  }

  .story-visual__img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}