/* Vision & Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vm-card {
  background: linear-gradient(160deg, var(--steel), rgba(21,25,28,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.vm-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.vm-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lightgold);
  margin-bottom: 14px;
}
.vm-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--light);
  font-weight: 400;
}

/* Our Story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.about-story p + p {
  margin-top: 16px;
}
.about-img-stack {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}
.about-img-stack img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-img-stack img:first-child {
  height: 300px;
}
.about-img-stack img:only-child {
  height: 500px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.team-card {
  background: linear-gradient(180deg, var(--steel), rgba(21,25,28,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-info {
  padding: 28px 30px 32px;
}
.team-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.team-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lightgold);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

@media (max-width: 1050px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .vm-grid,
  .about-story,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-img-stack img,
  .about-img-stack img:first-child {
    height: 220px;
  }
  .about-img-stack {
    margin-top: 0;
  }
}
