/* ================================================================
   LEDESMA'S MOTORS — about.css
   ================================================================ */

/* ── ABOUT INTRO ─────────────────────────────────────────────── */
.about-intro {
  padding: 6rem clamp(1.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-intro__big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.about-intro__text p {
  font-size: 0.92rem;
  color: var(--white-40);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-intro__text p:last-child { margin-bottom: 0; }

/* ── TEAM ─────────────────────────────────────────────────────── */
.team {
  padding: 7rem clamp(1.5rem, 6vw, 5rem);
}
.team__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 4rem;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
}
.team-card:hover {
  border-color: var(--border-o);
  transform: translateY(-4px);
}

/* Photo column */
.team-card__photo-wrap {
  width: 200px;
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: #0d0b22;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* PNG portraits — contain so full figure shows, anchored to bottom */
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
/* Placeholder */
.team-card__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(254,146,2,0.35);
  text-align: center;
  padding: 1rem;
}
.team-card__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.team-card__role {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--white-40);
  line-height: 1.75;
}

/* ── VALUES ──────────────────────────────────────────────────── */
.values {
  padding: 7rem clamp(1.5rem, 6vw, 5rem);
  background: #04021a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 3.5rem;
}
.values__list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.value-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s var(--ease);
}
.value-row:last-child { border-bottom: none; }
.value-row:hover { background: #0d0b24; }
.value-row__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(254,146,2,0.15);
  line-height: 1;
  transition: color 0.3s;
}
.value-row:hover .value-row__num { color: rgba(254,146,2,0.4); }
.value-row__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.value-row__content p {
  font-size: 0.88rem;
  color: var(--white-40);
  line-height: 1.7;
}
.value-row__line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.3s;
}
.value-row:hover .value-row__line { background: var(--orange); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .team__grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 600px) {
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo-wrap {
    width: 100%;
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .team-card__info { padding: 1.25rem; }
  .value-row { grid-template-columns: 70px 1fr; gap: 1.5rem; padding: 1.5rem; }
}