/**
 * stacciolla/manifesto — style.css
 * Dos columnas 50/50: texto editorial + imagen. Solo var(--fe-*).
 */

/* ============================================================
   WRAPPER
   ============================================================ */

.fe-manifesto {
  background: var(--fe-cream);
  width: 100%;
  padding-top: 0;
}

.fe-manifesto__inner {
  max-width: var(--fe-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* ============================================================
   COLUMNA IZQUIERDA — TEXTO
   ============================================================ */

.fe-manifesto__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 140px var(--fe-space-8);
}

/* ── Línea decorativa ── */

.fe-manifesto__divider {
  width: 40px;
  height: 1px;
  background: var(--fe-gold);
  margin-bottom: var(--fe-space-10);
  flex-shrink: 0;
}

/* ── Eyebrow ── */

.fe-manifesto__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin: 0 0 var(--fe-space-6) 0;
}

/* ── Texto del manifiesto ── */

.fe-manifesto__text {
  font-family: var(--fe-font-display);
  font-size: 1.5rem;
  font-weight: var(--fe-weight-light);
  line-height: 1.9;
  color: var(--fe-black);
  margin: 0;
}

/* ── Firma ── */

.fe-manifesto__signature {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin: var(--fe-space-12) 0 0;
}

/* ============================================================
   COLUMNA DERECHA — IMAGEN
   ============================================================ */

.fe-manifesto__image-col {
  position: relative;
  background: var(--fe-cream-dark);
  overflow: hidden;
}

.fe-manifesto__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .fe-manifesto__text-col {
    padding: 80px 48px 80px var(--fe-space-6);
  }

  .fe-manifesto__text {
    font-size: 1.3rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .fe-manifesto__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Imagen arriba en mobile */
  .fe-manifesto__image-col {
    order: -1;
    aspect-ratio: 4 / 3;
    position: relative;
  }

  .fe-manifesto__text-col {
    padding: 48px var(--fe-space-4) var(--fe-space-8);
  }

  .fe-manifesto__eyebrow {
    font-size: 0.8rem;
  }

  .fe-manifesto__text {
    font-size: 1.2rem;
  }

  .fe-manifesto__signature {
    margin-top: var(--fe-space-8);
  }

  .fe-manifesto {
    margin-top: var(--fe-space-6);
    margin-bottom: var(--fe-space-6);
  }
}
