/* Quiénes somos — diseño manifiesto */

.mp {
  margin-top: 0;
  background: var(--bg);
}

/* ── HERO ── */
.mp-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  overflow: hidden;
}

.mp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../imagen/slide1.jpg') center / cover no-repeat;
  opacity: 0.22;
  filter: grayscale(0.4);
}

.mp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 70%, #111 100%);
}

.mp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.mp-hero-logo {
  width: 72px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.mp-kicker {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.mp-hero h1 {
  font-size: clamp(2.5rem, 9vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.mp-tagline {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.mp-issue {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.mp-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  animation: mp-bob 2s ease-in-out infinite;
}

@keyframes mp-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── MANIFIESTO ── */
.mp-manifest {
  padding: 5rem 0;
  background: var(--bg);
}

.mp-manifest-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.mp-manifest p {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
  color: #2a2a2a;
}

.mp-manifest em {
  font-style: italic;
  font-weight: 400;
}

/* ── CITA GIGANTE ── */
.mp-pull {
  background: var(--black);
  color: #fff;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.mp-pull blockquote {
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
}

.mp-pull p {
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.mp-pull cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── SECCIONES EDITORIALES ── */
.mp-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}

.mp-section:last-of-type {
  border-bottom: none;
}

.mp-section--alt {
  background: #e8e7e3;
}

.mp-section--dark {
  background: var(--black);
  color: #fff;
  border-bottom-color: #222;
}

.mp-section-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.mp-num {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 200;
  line-height: 1;
  color: var(--line);
  flex-shrink: 0;
}

.mp-section--dark .mp-num {
  color: #333;
}

.mp-section-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lgray);
}

.mp-section--dark .mp-section-label {
  color: rgba(255,255,255,0.35);
}

.mp-section-body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mp-section-body h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.mp-section--dark .mp-section-body h2 {
  color: #fff;
}

.mp-section-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.15rem;
}

.mp-section--dark .mp-section-body p {
  color: rgba(255,255,255,0.72);
}

.mp-section-body p:last-child {
  margin-bottom: 0;
}

.mp-section-body em {
  font-style: italic;
  color: inherit;
}

/* ── TRES PRINCIPIOS ── */
.mp-principles {
  padding: 0;
  background: var(--bg);
}

.mp-principles-intro {
  padding: 3.5rem 1.5rem 2rem;
  max-width: 52rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.mp-principles-intro h2 {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
}

.mp-principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}

.mp-principle:nth-child(even) {
  direction: rtl;
}

.mp-principle:nth-child(even) > * {
  direction: ltr;
}

.mp-principle-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 200;
  line-height: 1;
}

.mp-principle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.5rem;
  background: var(--bg);
}

.mp-principle-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.mp-principle-content p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

/* ── SECCIONES REVISTA ── */
.mp-rubrics {
  padding: 4.5rem 0;
  background: #e8e7e3;
}

.mp-rubrics-head {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.mp-rubrics-list {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  list-style: none;
}

.mp-rubrics-list li {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.mp-rubrics-list li:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mp-rubrics-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  transition: opacity 0.15s, padding-left 0.2s;
}

.mp-rubrics-list a:hover {
  opacity: 0.55;
  padding-left: 0.5rem;
}

.mp-rubric-name {
  font-size: 1.05rem;
  font-weight: 500;
}

.mp-rubric-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray);
  text-align: right;
  flex-shrink: 0;
}

/* ── EQUIPO ── */
.mp-team {
  padding: 4.5rem 0;
  background: var(--bg);
}

.mp-team-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.mp-team-head h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

.mp-team-head a {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
}

.mp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 52rem;
  margin: 0 auto;
}

.mp-member {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

a.mp-member {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.mp-member:hover {
  background: #eceae6;
}

.mp-member-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mp-member-rol {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lgray);
  margin-bottom: 0.85rem;
}

.mp-member-bio {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
}

/* ── CTA ── */
.mp-cta {
  background: var(--black);
  color: #fff;
  padding: 4.5rem 1.5rem;
}

.mp-cta-inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mp-cta h2 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.mp-cta p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 28rem;
}

.mp-cta .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  flex-shrink: 0;
}

.mp-cta .btn-outline:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ── MÓVIL ── */
@media (max-width: 768px) {
  .mp {
    margin-top: 60px;
  }

  .mp-hero {
    min-height: calc(100svh - 60px);
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .mp-manifest,
  .mp-section,
  .mp-rubrics,
  .mp-team {
    padding: 3rem 0;
  }

  .mp-pull {
    padding: 3rem 1.25rem;
  }

  .mp-section-head {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .mp-principle {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mp-principle:nth-child(even) {
    direction: ltr;
  }

  .mp-principle-num {
    padding: 1.5rem;
    font-size: 3.5rem;
  }

  .mp-principle-content {
    padding: 1.75rem 1.25rem;
  }

  .mp-rubrics-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .mp-rubric-desc {
    text-align: left;
  }

  .mp-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-cta .btn-outline {
    width: 100%;
    text-align: center;
  }

  .mp-team-grid {
    grid-template-columns: 1fr;
  }
}
