/* ============================================
   VITTORIA LANDER — NOSOTROS PAGE
   ============================================ */


/* ─────────────────────────────────────────────
   PAGE HERO (mismo patrón que servicios/productos/blog)
───────────────────────────────────────────── */

.page-hero {
  position: relative;
  padding-top: 100px; /* altura del nav */
  overflow: hidden;
}

.page-hero__bg {
  position: relative;
  height: clamp(320px, 45vh, 520px);
  overflow: hidden;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 12, 14, 0.55) 0%,
    rgba(15, 12, 14, 0.75) 100%
  );
}

.page-hero__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: var(--space-2xl);
  z-index: 1;
}

.page-hero__content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero__sub {
  font-size: var(--text-md);
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   MANIFIESTO — cita editorial (reusa el patrón de home)
───────────────────────────────────────────── */

.about-manifesto {
  padding: var(--space-3xl) 0;
  background: var(--bg-base);
}

.about-manifesto__quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  text-wrap: balance;
}

.about-manifesto__quote em {
  font-style: italic;
  color: var(--gold-light);
}


/* ─────────────────────────────────────────────
   HISTORIA — split imagen + texto (mismo patrón que about-home)
───────────────────────────────────────────── */

.about-story {
  background: var(--bg-surface);
  overflow: hidden;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-story__media {
  position: relative;
  overflow: hidden;
}

.about-story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-story__text {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 4.5rem);
}

.about-story__text-inner {
  max-width: 520px;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.about-story__title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-story__body {
  font-size: var(--text-base);
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 55ch;
  margin-bottom: var(--space-md);
  text-wrap: pretty;
}

/* Credenciales — misma tira horizontal que en home */
.about-story__credentials {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(175, 121, 18, 0.2);
}

.about-story__credential {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-story__credential dt,
.about-story__credential dd {
  margin: 0;
  padding: 0;
}

.about-story__credential dt {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.about-story__credential dd {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--gray-mid);
  line-height: 1.4;
  max-width: 12ch;
}


/* ─────────────────────────────────────────────
   PILARES — grid "por qué elegirnos"
───────────────────────────────────────────── */

.about-pillars {
  padding: var(--space-3xl) 0;
  background: var(--bg-base);
}

.about-pillars__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.about-pillar {
  padding: var(--space-lg);
  border: var(--border-gold-subtle, 1px solid rgba(175, 121, 18, 0.25));
  text-align: left;
}

.about-pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.about-pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about-pillar__desc {
  font-size: var(--text-sm);
  color: var(--gray-mid);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   EQUIPO — sección de texto (sin fotos/nombres todavía)
───────────────────────────────────────────── */

.about-team {
  padding: var(--space-3xl) 0;
  background: var(--bg-surface);
}

.about-team__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-team__body {
  font-size: var(--text-base);
  color: var(--gray-light);
  line-height: 1.8;
  margin-top: var(--space-lg);
}


/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-story__media {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .about-story__credentials {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
}
