/* ---- Story section ---- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story__image { position: relative; }
.about-story__image img { width: 100%; height: 460px; object-fit: cover; }
.about-story__image::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 3px solid var(--red); z-index: -1;
}
.about-story__year {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-story__year-num { font-family: var(--font-h); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.about-story__year-label { font-family: var(--font-h); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ---- Motto Section ---- */
.about-stats {
  background: var(--black);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-motto { max-width: 900px; margin: 0 auto; }
.about-motto__tag {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.about-motto__text {
  font-family: var(--font-h);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--ease);
}

/* ---- Team section ---- */
.about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { overflow: hidden; border: 1px solid #ececec; transition: transform var(--ease), box-shadow var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-card__image { height: 260px; overflow: hidden; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card__image img { transform: scale(1.06); }
.team-card__body { padding: 20px; background: var(--white); }
.team-card__name { font-family: var(--font-h); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--black); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--red); font-weight: 500; margin-bottom: 12px; }
.team-card__bio { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---- Values section ---- */
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 40px 30px; border: 1px solid #ececec; position: relative; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--red);
  transform: scaleX(0); transition: var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card__number { font-family: var(--font-h); font-size: 64px; font-weight: 700; color: #f0f0f0; line-height: 1; margin-bottom: 12px; }
.value-card__title { font-family: var(--font-h); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 12px; }
.value-card__desc { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story__image::before { display: none; }
  .about-story__year { display: none; }
  .about-team__grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-team__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
}
