.va {
  background: var(--vierlot-bg);
  color: var(--vierlot-text);
  font-family: var(--vierlot-font);
}

.va__banner {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.va__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.va__banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.va__banner-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--vierlot-text);
  margin: 0 0 12px;
  background: rgba(245, 242, 237, 0.7);
  padding: 12px 24px;
}
.va__banner-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 0;
  background: rgba(245, 242, 237, 0.7);
  padding: 8px 20px;
}

.va__intro {
  max-width: 800px;
  padding: 60px 20px;
  text-align: center;
}
.va__intro-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}

.va__stand {
  padding: 60px 20px;
}
.va__section-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 32px;
  line-height: 1.3;
}
.va__section-title--center {
  text-align: center;
}
.va__stand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.va__stand-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 12px;
}
.va__stand-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.5;
  margin: 0;
}

.va__numbers {
  padding: 60px 20px;
}
.va__numbers-lead {
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 32px;
}
.va__numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.va__num {
  font-size: 28px;
  font-weight: 600;
  color: var(--vierlot-text);
  margin-bottom: 8px;
}
.va__num-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.5;
  margin: 0;
}

.va__story {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  padding: 60px 20px;
  align-items: center;
}
.va__story-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.va__story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.va__story-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text-light);
  margin: 0 0 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.va__story-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 16px;
}

.va__team {
  max-width: 800px;
  padding: 60px 20px;
  text-align: center;
}
.va__team-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0;
}

.va__partners {
  padding: 40px 20px;
  text-align: center;
}
.va__partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.va__partners-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
}

.va__join {
  max-width: 600px;
  padding: 60px 20px;
  text-align: center;
}
.va__join-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--vierlot-text);
  margin: 0 0 16px;
}
.va__join-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 24px;
}
.va__join-btn {
  display: inline-block;
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--vierlot-text);
  color: var(--vierlot-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.va__join-btn:hover {
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
}

@media (max-width: 768px) {
  .va__banner {
    height: 400px;
  }
  .va__banner-title {
    font-size: 26px;
  }
  .va__banner-sub {
    font-size: 16px;
  }
  .va__intro,
  .va__stand,
  .va__numbers,
  .va__story,
  .va__team,
  .va__partners,
  .va__join {
    padding: 40px 16px;
  }
  .va__stand-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .va__numbers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .va__story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
